Skip to content

Commit 93aceb8

Browse files
committed
Add setting for intel-mkl (use termoshtt/lapack)
1 parent 4fca959 commit 93aceb8

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

Cargo.toml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ openblas-system = ["lapack/openblas", "openblas-src/system"]
1919
netlib-shared = ["lapack/netlib"]
2020
netlib-static = ["lapack/netlib", "netlib-src/static"]
2121
netlib-system = ["lapack/netlib", "netlib-src/system"]
22+
intel-mkl = ["lapack/intel-mkl", "intel-mkl-src"]
2223

2324
[dependencies]
2425
rand = "0.3"
@@ -33,7 +34,8 @@ default-features = false
3334
features = ["blas"]
3435

3536
[dependencies.lapack]
36-
version = "0.13"
37+
git = "http://github.com/termoshtt/lapack"
38+
branch = "intel-mkl"
3739
default-features = false
3840

3941
[dependencies.openblas-src]
@@ -45,3 +47,8 @@ optional = true
4547
version = "0.7.0"
4648
default-features = false
4749
optional = true
50+
51+
[dependencies.intel-mkl-src]
52+
version = "0.2.5"
53+
default-features = false
54+
optional = true

0 commit comments

Comments
 (0)