diff --git a/sparse/unit_test/Test_Sparse_coo2crs.hpp b/sparse/unit_test/Test_Sparse_coo2crs.hpp index 7e20c76f21..8c89c8ae29 100644 --- a/sparse/unit_test/Test_Sparse_coo2crs.hpp +++ b/sparse/unit_test/Test_Sparse_coo2crs.hpp @@ -214,6 +214,11 @@ void doAllCoo2Crs(size_t m, size_t n) { } TEST_F(TestCategory, sparse_coo2crs) { + if constexpr (std::is_same_v) { + std::cout << "Not running coo2csr on SYCL execution space" << std::endl; + return; + } + uint64_t ticks = std::chrono::high_resolution_clock::now().time_since_epoch().count() % UINT32_MAX; std::srand(ticks); @@ -241,6 +246,11 @@ TEST_F(TestCategory, sparse_coo2crs) { } TEST_F(TestCategory, sparse_coo2crs_staticMatrix_edgeCases) { + if constexpr (std::is_same_v) { + std::cout << "Not running coo2csr on SYCL execution space" << std::endl; + return; + } + int m = 4; int n = 4; long long staticRow[16]{0, 1, 3, 2, 3, 2, 2, 2, 0, 0, 0, 1, 2, 0, 3, 0};