Skip to content

Commit

Permalink
simd: temporarily skip device math ops unit test for OpenMPTarget bui…
Browse files Browse the repository at this point in the history
…ld (kokkos#6574)

* Temporary disable to prevent further CI failures

* Added a description for the test skip

* Update simd/unit_tests/include/TestSIMD_MathOps.hpp

Co-authored-by: Damien L-G <dalg24+github@gmail.com>

* Update simd/unit_tests/include/TestSIMD_MathOps.hpp

Co-authored-by: Damien L-G <dalg24+github@gmail.com>

---------

Co-authored-by: Damien L-G <dalg24+github@gmail.com>
  • Loading branch information
ldh4 and dalg24 committed Nov 7, 2023
1 parent a453e9f commit 8008496
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions simd/unit_tests/include/TestSIMD_MathOps.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -294,6 +294,12 @@ TEST(simd, host_math_ops) {
}

TEST(simd, device_math_ops) {
#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_math_ops_functor());
}

Expand Down

0 comments on commit 8008496

Please sign in to comment.