Skip to content

Commit

Permalink
Disable tests failing with NVHPC
Browse files Browse the repository at this point in the history
  • Loading branch information
masterleinad committed May 16, 2023
1 parent df5681d commit f8ed850
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions core/unit_test/TestReducers.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -1221,14 +1221,20 @@ struct TestReducers {
#if !defined(KOKKOS_ENABLE_OPENACC)
// FIXME_OPENACC - OpenACC (V3.3) does not support custom reductions.
test_minloc(10003);
// FIXME_NVHPC misaligned memory
#if !defined(KOKKOS_COMPILER_NVHPC)
test_minloc_2d(100);
#endif
#endif
test_max(10007);
#if !defined(KOKKOS_ENABLE_OPENACC)
// FIXME_OPENACC - OpenACC (V3.3) does not support custom reductions.
test_maxloc(10007);
// FIXME_NVHPC misaligned memory
#if !defined(KOKKOS_COMPILER_NVHPC)
test_maxloc_2d(100);
#endif
#endif
#if defined(KOKKOS_ENABLE_OPENMPTARGET) && defined(KOKKOS_COMPILER_CLANG) && \
(KOKKOS_COMPILER_CLANG < 1300)
// FIXME_OPENMPTARGET - The minmaxloc test fails llvm <= 13 version.
Expand Down

0 comments on commit f8ed850

Please sign in to comment.