Update Kokkos library in LAMMPS to v3.7.1

This commit is contained in:
Stan Gerald Moore
2022-12-22 09:20:35 -07:00
parent 33f3adf85c
commit 25df28292f
44 changed files with 905 additions and 327 deletions

View File

@ -134,5 +134,15 @@ TEST(TEST_CATEGORY, team_parallel_dummy_with_reducer_and_scratch_space) {
}
}
TEST(TEST_CATEGORY, repeated_team_reduce) {
#ifdef KOKKOS_ENABLE_OPENMPTARGET
if (std::is_same<TEST_EXECSPACE, Kokkos::Experimental::OpenMPTarget>::value)
GTEST_SKIP() << "skipping since team_reduce for OpenMPTarget is not "
"properly implemented";
#endif
TestRepeatedTeamReduce<TEST_EXECSPACE>();
}
} // namespace Test
#endif