Skip to content

Commit 7b87443

Browse files
committed
Use lapack-src 0.1.4 for intel-mkl feature
1 parent 23644fe commit 7b87443

File tree

2 files changed

+1
-15
lines changed

2 files changed

+1
-15
lines changed

Cargo.toml

+1-6
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ categories = ["algorithms", "science"]
1414
[features]
1515
default = []
1616
accelerate = ["lapack-src/accelerate", "blas-src/accelerate"]
17-
intel-mkl = ["intel-mkl-src"]
17+
intel-mkl = ["lapack-src/intel-mkl", "blas-src/intel-mkl"]
1818
netlib = ["lapack-src/netlib", "blas-src/netlib", "netlib-src"]
1919
openblas = ["lapack-src/openblas", "blas-src/openblas", "openblas-src"]
2020

@@ -41,11 +41,6 @@ version = "0.1"
4141
default-features = false
4242
optional = true
4343

44-
[dependencies.intel-mkl-src]
45-
version = "0.2"
46-
default-features = false
47-
optional = true
48-
4944
[dependencies.netlib-src]
5045
version = "0.7.0"
5146
features = ["static", "cblas", "lapacke", "tmg"]

src/lib.rs

-9
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,6 @@ extern crate procedurals;
2828
#[macro_use]
2929
extern crate derive_new;
3030

31-
#[cfg(feature = "openblas")]
32-
extern crate openblas_src;
33-
34-
#[cfg(feature = "netlib")]
35-
extern crate netlib_src;
36-
37-
#[cfg(feature = "intel-mkl")]
38-
extern crate intel_mkl_src;
39-
4031
pub mod assert;
4132
pub mod cholesky;
4233
pub mod convert;

0 commit comments

Comments
 (0)