Skip to content

Commit

Permalink
FIX: Fix old feature name
Browse files Browse the repository at this point in the history
  • Loading branch information
Axect committed Oct 25, 2024
1 parent 34b6945 commit 206f46d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/blas_test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ extern crate peroxide;
use peroxide::fuga::*;

#[test]
#[cfg(feature = "native")]
#[cfg(feature = "O3")]
fn daxpy_test() {
let a = ml_matrix("1 2; 3 4");
let b = matrix(vec![1, 3, 2, 4], 2, 2, Col);
Expand All @@ -14,7 +14,7 @@ fn daxpy_test() {
}

#[test]
#[cfg(feature = "native")]
#[cfg(feature = "O3")]
fn dgemv_test() {
let a = ml_matrix("1 2;3 4");
let b = c![1, 2];
Expand All @@ -24,7 +24,7 @@ fn dgemv_test() {
}

#[test]
#[cfg(feature = "native")]
#[cfg(feature = "O3")]
fn dgemm_test() {
// 2x2
let a = ml_matrix("1 2;3 4");
Expand Down

0 comments on commit 206f46d

Please sign in to comment.