Skip to content

Commit

Permalink
Allow to skip double tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Rbiessy committed Oct 19, 2023
1 parent c5ec622 commit cdce00b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/unit_tests/sparse_blas/source/sparse_gemv_usm.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -191,6 +191,7 @@ TEST_P(SparseGemvUsmTests, RealSinglePrecision) {

TEST_P(SparseGemvUsmTests, RealDoublePrecision) {
using fpType = double;
CHECK_DOUBLE_ON_DEVICE(GetParam());
test_helper<fpType>(GetParam(), oneapi::mkl::transpose::nontrans);
test_helper<fpType>(GetParam(), oneapi::mkl::transpose::trans);
}
Expand All @@ -204,6 +205,7 @@ TEST_P(SparseGemvUsmTests, ComplexSinglePrecision) {

TEST_P(SparseGemvUsmTests, ComplexDoublePrecision) {
using fpType = std::complex<double>;
CHECK_DOUBLE_ON_DEVICE(GetParam());
test_helper<fpType>(GetParam(), oneapi::mkl::transpose::nontrans);
test_helper<fpType>(GetParam(), oneapi::mkl::transpose::trans);
test_helper<fpType>(GetParam(), oneapi::mkl::transpose::conjtrans);
Expand Down

0 comments on commit cdce00b

Please sign in to comment.