Skip to content

Commit

Permalink
Adds enabling blas under blis for numeric-tests
Browse files Browse the repository at this point in the history
  • Loading branch information
akern40 committed Nov 29, 2024
1 parent 44980b5 commit 2eeda95
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion crates/numeric-tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,5 @@ num-traits = { workspace = true }
num-complex = { workspace = true }

[features]
test_openblas = ["ndarray/blas", "blas-src", "openblas-src"]
test_blas = ["ndarray/blas", "blas-src", "openblas-src"]
test_blis = ["ndarray/blas", "blas-src", "blis-src"]
2 changes: 1 addition & 1 deletion crates/numeric-tests/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#[cfg(feature = "test_blas")]
#[cfg(any(feature = "test_blas", feature = "test_blis"))]
extern crate blas_src;

0 comments on commit 2eeda95

Please sign in to comment.