Skip to content

Commit

Permalink
Temporarily disable simd_reduction test for omptarget build
Browse files Browse the repository at this point in the history
  • Loading branch information
ldh4 committed Feb 5, 2024
1 parent 63a1208 commit 9799780
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions simd/unit_tests/include/TestSIMD_Reductions.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,12 @@ TEST(simd, host_reductions) {
}

TEST(simd, device_reductions) {
#ifdef KOKKOS_ENABLE_OPENMPTARGET // FIXME_OPENMPTARGET
GTEST_SKIP()
<< "skipping because of a non-deterministic failure reporting: "
"Failure to synchronize stream (nil): Error in "
"cuStreamSynchronize: an illegal memory access was encountered";
#endif
Kokkos::parallel_for(1, simd_device_reduction_functor());
}

Expand Down

0 comments on commit 9799780

Please sign in to comment.