Skip to content

Commit 7126e50

Browse files
committed
Link intel-mkl-src 0.4.0 directly
To bypass the blas-src/lapack-src until their PR are merged - blas-lapack-rs/blas-src#3 - blas-lapack-rs/lapack-src#3
1 parent 0ca488f commit 7126e50

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

Cargo.toml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ categories = ["algorithms", "science"]
1414

1515
[features]
1616
default = []
17-
intel-mkl = ["lapack-src/intel-mkl", "blas-src/intel-mkl"]
17+
intel-mkl = ["intel-mkl-src"]
1818
netlib = ["lapack-src/netlib", "blas-src/netlib"]
1919
openblas = ["lapack-src/openblas", "blas-src/openblas"]
2020
serde-1 = ["ndarray/serde-1", "num-complex/serde"]
@@ -40,3 +40,8 @@ optional = true
4040
version = "0.2"
4141
default-features = false
4242
optional = true
43+
44+
[dependencies.intel-mkl-src]
45+
version = "0.4"
46+
default-features = false
47+
optional = true

src/lib.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,9 @@
3636
//! - [Random matrix generators](generate/index.html)
3737
//! - [Scalar trait](types/trait.Scalar.html)
3838
39+
#[cfg(feature = "intel-mkl")]
40+
extern crate intel_mkl_src;
41+
3942
pub mod assert;
4043
pub mod cholesky;
4144
pub mod convert;

0 commit comments

Comments
 (0)