Skip to content

Commit

Permalink
Merge pull request #6787 from ldh4/simd_skip_reduction_omptarget
Browse files Browse the repository at this point in the history
simd: temporarily skip simd reduction unit test for omptarget build
  • Loading branch information
dalg24 committed Feb 6, 2024
2 parents 01d5f81 + 9799780 commit 5f128d2
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 5f128d2

Please sign in to comment.