Skip to content

Commit

Permalink
BSPGEMM: removing cusparse testing for version older than 11.4.0
Browse files Browse the repository at this point in the history
Older version are either hanging or returning wrong results in our
unit-tests, this is fixed with more recent versions of the TPL.
  • Loading branch information
lucbv committed Oct 16, 2023
1 parent 549f6e1 commit 0ca98ca
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions sparse/unit_test/Test_Sparse_bspgemm.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,15 @@ void test_bspgemm(lno_t blkDim, lno_t m, lno_t k, lno_t n, size_type nnz,
return;
}
#endif // KOKKOSKERNELS_ENABLE_TPL_ARMPL
#if defined(KOKKOSKERNELS_ENABLE_TPL_CUSPARSE) && (CUSPARSE_VERSION < 11600)
{
std::cerr
<< "TEST SKIPPED: See "
"https://github.com/kokkos/kokkos-kernels/issues/1965 for details."
<< std::endl;
return;
}
#endif
using namespace Test;
// device::execution_space::initialize();
// device::execution_space::print_configuration(std::cout);
Expand Down

0 comments on commit 0ca98ca

Please sign in to comment.