forked from bluss/matrixmultiply
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
50 lines (37 loc) · 1.2 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
[package]
name = "matrixmultiply"
version = "0.2.3"
authors = [
"bluss",
"R. Janis Goldschmidt"
]
license = "MIT/Apache-2.0"
repository = "https://github.com/bluss/matrixmultiply/"
documentation = "https://docs.rs/matrixmultiply/"
description = "General matrix multiplication for f32 and f64 matrices. Operates on matrices with general layout (they can use arbitrary row and column stride). Detects and uses AVX or SSE2 on x86 platforms transparently for higher performance. Uses a microkernel strategy, so that the implementation is easy to parallelize and optimize."
keywords = ["matrix", "sgemm", "dgemm"]
categories = ["science"]
exclude = ["docs/*", "/sgx/*"]
[lib]
bench = false
[features]
default = ["mesalock_sgx", "fallback"]
mesalock_sgx = ["sgx_tstd"]
fma = []
avx = []
sse = []
fallback = [] # fallback is significantly faster in small matrix multiply
[[bench]]
name = "benchmarks"
harness = false
[dependencies]
rawpointer = "0.2"
sgx_tstd = { rev = "v1.1.3", git = "https://github.com/apache/teaclave-sgx-sdk.git", optional = true }
[dev-dependencies]
#bencher = "0.1.2"
#itertools = "0.8"
[profile.release]
[profile.bench]
[package.metadata.release]
no-dev-version = true
tag-name = "{{version}}"