Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 8 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ readme = "README.md"
categories = ["algorithms", "science"]

[features]
default = []
intel-mkl = ["lapack-src/intel-mkl", "blas-src/intel-mkl"]
default = ["intel-mkl"]
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

must be removed

intel-mkl = ["lapack-src/intel-mkl", "blas-src/intel-mkl", "intel-mkl-sys"]
netlib = ["lapack-src/netlib", "blas-src/netlib"]
openblas = ["lapack-src/openblas", "blas-src/openblas"]
serde-1 = ["ndarray/serde-1", "num-complex/serde"]
Expand All @@ -39,7 +39,7 @@ version = "0.6.1"
default-features = false

[dependencies.lapack-src]
version = "0.6.0"
version = "0.6"
default-features = false

[dependencies.openblas-src]
Expand All @@ -48,6 +48,11 @@ default-features = false
features = ["static"]
optional = true

[dependencies.intel-mkl-sys]
version = "0.1"
default-features = false
optional = true

[dev-dependencies]
paste = "0.1.9"
criterion = "0.3.1"
Expand Down
2 changes: 2 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,8 @@ pub mod svddc;
pub mod trace;
pub mod triangular;
pub mod types;
#[cfg(feature = "intel-mkl")]
pub mod vecmath;

pub use assert::*;
pub use cholesky::*;
Expand Down
Loading