Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/intel-mkl.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: cargo test
run: cargo test --manifest-path=ndarray-linalg/Cargo.toml --no-default-features --features=intel-mkl-static --verbose
run: cargo test --manifest-path=ndarray-linalg/Cargo.toml --no-default-features --features=intel-mkl-static-lp64-seq --verbose
15 changes: 12 additions & 3 deletions lax/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,25 @@ default = []

netlib = ["netlib-static"]
openblas = ["openblas-static"]
intel-mkl = ["intel-mkl-static"]
intel-mkl = ["intel-mkl-static-lp64-seq"]

netlib-static = ["netlib-src/static"]
netlib-system = ["netlib-src/system"]

openblas-static = ["openblas-src/static"]
openblas-system = ["openblas-src/system"]

intel-mkl-static = ["intel-mkl-src/mkl-static-lp64-seq"]
intel-mkl-system = ["intel-mkl-src/mkl-dynamic-lp64-seq"]
intel-mkl-static = ["intel-mkl-src/mkl-static-lp64-seq"] # deprecated, use intel-mkl-static-lp64-seq instead
intel-mkl-system = ["intel-mkl-src/mkl-dynamic-lp64-seq"] # deprecated, use intel-mkl-dynamic-lp64-seq instead

intel-mkl-dynamic-ilp64-iomp = ["intel-mkl-src/mkl-dynamic-ilp64-iomp"]
intel-mkl-dynamic-ilp64-seq = ["intel-mkl-src/mkl-dynamic-ilp64-seq"]
intel-mkl-dynamic-lp64-iomp = ["intel-mkl-src/mkl-dynamic-lp64-iomp"]
intel-mkl-dynamic-lp64-seq = ["intel-mkl-src/mkl-dynamic-lp64-seq"]
intel-mkl-static-ilp64-iomp = ["intel-mkl-src/mkl-static-ilp64-iomp"]
intel-mkl-static-ilp64-seq = ["intel-mkl-src/mkl-static-ilp64-seq"]
intel-mkl-static-lp64-iomp = ["intel-mkl-src/mkl-static-lp64-iomp"]
intel-mkl-static-lp64-seq = ["intel-mkl-src/mkl-static-lp64-seq"]

[dependencies]
thiserror = "2.0.0"
Expand Down
12 changes: 11 additions & 1 deletion lax/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,17 @@

#![deny(rustdoc::broken_intra_doc_links, rustdoc::private_intra_doc_links)]

#[cfg(any(feature = "intel-mkl-system", feature = "intel-mkl-static"))]
#[cfg(any(
feature = "intel-mkl-static", //decprecated
feature = "intel-mkl-dynamic", //decprecated
feature = "intel-mkl-dynamic-lp64-iomp",
feature = "intel-mkl-dynamic-lp64-seq",
feature = "intel-mkl-static-ilp64-iomp",
feature = "intel-mkl-static-lp64-iomp",
feature = "intel-mkl-dynamic-ilp64-iomp",
feature = "intel-mkl-static-ilp64-seq",
feature = "intel-mkl-static-lp64-seq"
))]
extern crate intel_mkl_src as _src;

#[cfg(any(feature = "openblas-system", feature = "openblas-static"))]
Expand Down
15 changes: 12 additions & 3 deletions ndarray-linalg/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,25 @@ blas = ["ndarray/blas"]

netlib = ["lax/netlib"]
openblas = ["lax/openblas"]
intel-mkl = ["lax/intel-mkl"]
intel-mkl = ["lax/intel-mkl-static-lp64-seq"]

netlib-static = ["lax/netlib-static"]
netlib-system = ["lax/netlib-system"]

openblas-static = ["lax/openblas-static"]
openblas-system = ["lax/openblas-system"]

intel-mkl-static = ["lax/intel-mkl-static"]
intel-mkl-system = ["lax/intel-mkl-system"]
intel-mkl-static = ["lax/intel-mkl-static"] # deprecated, use intel-mkl-static-lp64-seq instead
intel-mkl-system = ["lax/intel-mkl-system"] # deprecated, use intel-mkl-dynamic-lp64-seq instead

intel-mkl-dynamic-ilp64-iomp = ["lax/intel-mkl-dynamic-ilp64-iomp"]
intel-mkl-dynamic-ilp64-seq = ["lax/intel-mkl-dynamic-ilp64-seq"]
intel-mkl-dynamic-lp64-iomp = ["lax/intel-mkl-dynamic-lp64-iomp"]
intel-mkl-dynamic-lp64-seq = ["lax/intel-mkl-dynamic-lp64-seq"]
intel-mkl-static-ilp64-iomp = ["lax/intel-mkl-static-ilp64-iomp"]
intel-mkl-static-ilp64-seq = ["lax/intel-mkl-static-ilp64-seq"]
intel-mkl-static-lp64-iomp = ["lax/intel-mkl-static-lp64-iomp"]
intel-mkl-static-lp64-seq = ["lax/intel-mkl-static-lp64-seq"]

[dependencies]
cauchy = "0.4.0"
Expand Down