Skip to content

Commit

Permalink
Disable tests that fail at runtime with NVHPC (likely not liking the …
Browse files Browse the repository at this point in the history
…class declaration within the body of the functor)
  • Loading branch information
dalg24 committed May 4, 2023
1 parent 432988b commit 7533cb4
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions core/unit_test/TestBitManipulationBuiltins.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -821,6 +821,12 @@ struct TestBitCastFunction {
}
}

#if defined(KOKKOS_ENABLE_CUDA) && \
defined(KOKKOS_COMPILER_NVHPC) // FIXME_NVHPC
if constexpr (std::is_same_v<Space, Kokkos::Cuda>) {
return;
}
#endif
struct S {
int i;

Expand Down

0 comments on commit 7533cb4

Please sign in to comment.