-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
38 lines (32 loc) · 1003 Bytes
/
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
[package]
name = "matrix_mult"
version = "0.1.0"
authors = ["gannema <[email protected]>"]
edition = "2018"
[dev-dependencies]
criterion="*"
[features]
# enable this to log using rayon_logs
logs = ["rayon_logs"]
[dependencies]
rayon_logs= {optional=true, git="https://github.com/wagnerf42/rayon-logs"}
nalgebra = "0.18.0"
approx = { version = "0.3", default-features = false }
faster = {git = "https://github.com/AdamNiederer/faster/"}
rayon="*"
ndarray= { version = "0.12.1", features = ["blas"] }
itertools="0.8.0"
smallvec = "~0.6"
itertools-num="*"
blas-src = { version = "0.2.0", default-features = false, features = ["openblas"] }
openblas-src = { version = "0.6.0", default-features = false, features = ["cblas", "system"] }
rayon_adaptive = {git = "https://github.com/wagnerf42/rayon-adaptive.git", branch = "new_api", features=["logs"]}
rand = "0.6.5"
time = "0.1"
num-traits="*"
packed_simd="*"
[[bench]]
name = "matrix_mult"
harness = false
[profile.release]
debug = true