-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
102 lines (83 loc) · 1.8 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
[package]
name = "rlst"
version = "0.2.1"
authors = ["The linalg-rs contributors"]
edition = "2021"
description = "A Rust native linear algebra library."
license = "MIT / Apache-2.0"
homepage = "https://github.com/linalg-rs"
repository = "https://github.com/linalg-rs/rlst"
readme = "README.md"
keywords = ["numerics"]
categories = ["mathematics", "science"]
exclude = [
"suitesparse-src",
"netlib-lapack-src",
"blis-src",
]
[lib]
name = "rlst"
[dependencies]
rlst-proc-macro = { path = "proc-macro", version = "0.2" }
num = { version = "0.4", features = ["serde", "rand"]}
rand = "0.8"
rand_chacha = "0.3"
rand_distr = "0.4"
itertools = "0.13"
blas = "0.22"
lapack = "0.19"
thiserror = "1"
serde = "1"
coe-rs = "0.1.2"
pulp = { version = "0.18.12" }
bytemuck = "1.16.0"
mpi = { version="0.8.0", optional=true }
mpi-sys = { version="0.2.1", optional=true }
[dev-dependencies]
criterion = { version = "0.5", features = ["html_reports"] }
approx = { version = "0.5", features=["num-complex"] }
paste = "1"
rand = "0.8"
[build-dependencies]
cc = "1.0"
bindgen = "0.70"
cmake = "0.1"
git2 = "0.19"
[features]
strict = []
default = []
mpi = ["dep:mpi", "dep:mpi-sys"]
suitesparse = []
disable_system_blas_lapack = []
sleef = []
nightly = []
internal_blis = []
[lints.clippy]
wildcard_imports = "forbid"
[[bench]]
name = "matrix_multiplication"
harness = false
[[bench]]
name = "inverse_sqrt_f64"
harness = false
[[bench]]
name = "inverse_sqrt_f32"
harness = false
[[bench]]
name = "sin_cos"
harness = false
[[bench]]
name = "exp"
harness = false
[[example]]
name = "mpi_gather_to_all_vector"
required-features = ["mpi"]
[[example]]
name = "mpi_gather_vector"
required-features = ["mpi"]
[[example]]
name = "mpi_index_set"
required-features = ["mpi"]
[[example]]
name = "mpi_scatter_vector"
required-features = ["mpi"]