File tree Expand file tree Collapse file tree 2 files changed +8
-6
lines changed
Expand file tree Collapse file tree 2 files changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -18,13 +18,15 @@ procedurals = "0.2"
1818num-traits = " 0.1"
1919num-complex = { version = " 0.1" , default-features = false }
2020lapacke = " 0.1.4"
21- lapack-src = { git = " https://github.com/alexbool/lapack-src" , rev = " da33354" , optional = true }
21+ lapack-src = { version = " 0.1" , default-features = false , optional = true }
22+ intel-mkl-src = { version = " 0.2" , optional = true }
2223
2324[dependencies .ndarray ]
2425version = " 0.10"
2526default-features = false
2627
2728[features ]
28- openblas = [" lapack-src" , " lapack-src/openblas" ]
29- netlib = [" lapack-src" , " lapack-src/netlib" ]
30- intel-mkl = [" lapack-src" , " lapack-src/intel-mkl" ]
29+ default = []
30+ openblas = [" lapack-src/openblas" ]
31+ netlib = [" lapack-src/netlib" ]
32+ intel-mkl = [" intel-mkl-src" ]
Original file line number Diff line number Diff line change @@ -28,8 +28,8 @@ extern crate procedurals;
2828#[ macro_use]
2929extern crate derive_new;
3030
31- // #[cfg(feature = "intel-mkl")]
32- // extern crate intel_mkl_src;
31+ #[ cfg( feature = "intel-mkl" ) ]
32+ extern crate intel_mkl_src;
3333
3434pub mod assert;
3535pub mod cholesky;
You can’t perform that action at this time.
0 commit comments