-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
66 lines (57 loc) · 1.67 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
[package]
name = "finalfusion-utils"
version = "0.14.1"
authors = ["Daniël de Kok <[email protected]>"]
edition = "2018"
description = "finalfusion utilities"
documentation = "https://docs.rs/finalfusion/"
homepage = "https://github.com/finalfusion/finalfusion-rust"
repository = "https://github.com/finalfusion/finalfusion-rust"
license = "MIT OR Apache-2.0"
readme = "README.md"
[[bin]]
name = "finalfusion"
path = "src/main.rs"
[dependencies]
anyhow = "1"
clap = "2"
env_logger = "0.9"
indicatif = "0.16"
ndarray = "0.15"
num_cpus = "1"
rayon = "1"
reductive = "0.9"
finalfusion = "0.17.1"
stdinout = "0.4"
toml = "0.5"
[dependencies.accelerate-src]
version = "0.3"
optional = true
[dependencies.intel-mkl-src]
version = "0.6"
optional = true
default-features = false
[dependencies.netlib-src]
version = "0.8"
optional = true
default-features = false
features = ["cblas", "lapacke", "system"]
[dependencies.openblas-src]
version = "0.9"
optional = true
features = ["system"]
[build-dependencies]
# Fix incompatibility between anyhow and intel-mkl-tool. Remove with
# the next release of intel-mkl-tool. For more information, see:
# https://github.com/rust-math/intel-mkl-src/issues/68
anyhow = { version = "<=1.0.48" }
openssl = { version = "0.10", optional = true }
[features]
default = []
opq = ["reductive/opq-train"]
# BLAS and LAPACK libraries.
accelerate = ["opq", "ndarray/blas", "accelerate-src"]
intel-mkl = ["opq", "ndarray/blas", "intel-mkl-src/mkl-static-lp64-seq", "intel-mkl-src/download", "openssl/vendored"]
intel-mkl-amd = ["opq", "ndarray/blas", "intel-mkl-src/mkl-dynamic-lp64-seq"]
netlib = ["opq", "ndarray/blas", "netlib-src"]
openblas = ["opq", "ndarray/blas", "openblas-src"]