forked from bluss/matrixmultiply
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
57 lines (41 loc) · 1.23 KB
/
Cargo.toml
File metadata and controls
57 lines (41 loc) · 1.23 KB
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
50
51
52
53
54
55
56
[package]
name = "matrixmultiply"
edition = "2018"
version = "0.3.2"
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.
Supports multithreading."""
keywords = ["matrix", "sgemm", "dgemm"]
categories = ["science"]
exclude = ["docs/*"]
[lib]
bench = false
[[bench]]
name = "benchmarks"
harness = false
[dependencies]
rawpointer = "0.2"
thread-tree = { version = "0.3.2", optional = true }
once_cell = { version = "1.7", optional = true }
num_cpus = { version = "1.13", optional = true }
[dev-dependencies]
bencher = "0.1.2"
itertools = "0.8"
[features]
default = ["std"]
threading = ["thread-tree", "std", "once_cell", "num_cpus"]
std = []
[profile.release]
debug = true
[profile.bench]
debug = true
[package.metadata.release]
no-dev-version = true
tag-name = "{{version}}"