Update Kokkos library in LAMMPS to v4.1.0

This commit is contained in:
Stan Gerald Moore
2023-06-29 10:42:42 -06:00
parent 170173a213
commit 330107b77b
480 changed files with 24051 additions and 23393 deletions

View File

@ -1904,6 +1904,13 @@ TEST(TEST_CATEGORY, ThreadVectorMDRangeParallelReduce) {
GTEST_SKIP() << "skipping because of bug in group_barrier implementation";
#endif
// FIXME_OPENMPTARGET_CRAY: The unit tests fails correctness.
#if defined(KOKKOS_ENABLE_OPENMPTARGET) && defined(KOKKOS_COMPILER_CRAYCLANG)
if (std::is_same_v<TEST_EXECSPACE, Kokkos::Experimental::OpenMPTarget>)
GTEST_SKIP() << "Cray compiler fails correctness at runtime with the "
"OpenMPTarget backend.";
#endif
TestThreadVectorMDRangeParallelReduce<TEST_EXECSPACE>::
test_parallel_reduce_for_4D_ThreadVectorMDRange<Left>(dims);
TestThreadVectorMDRangeParallelReduce<TEST_EXECSPACE>::
@ -1937,6 +1944,13 @@ TEST(TEST_CATEGORY, TeamVectorMDRangeParallelReduce) {
GTEST_SKIP() << "skipping because of bug in group_barrier implementation";
#endif
// FIXME_OPENMPTARGET_CRAY: The unit tests fails correctness.
#if defined(KOKKOS_ENABLE_OPENMPTARGET) && defined(KOKKOS_COMPILER_CRAYCLANG)
if (std::is_same_v<TEST_EXECSPACE, Kokkos::Experimental::OpenMPTarget>)
GTEST_SKIP() << "Cray compiler fails correctness at runtime with the "
"OpenMPTarget backend.";
#endif
TestTeamVectorMDRangeParallelReduce<TEST_EXECSPACE>::
test_parallel_reduce_for_4D_TeamVectorMDRange<Left>(dims);
TestTeamVectorMDRangeParallelReduce<TEST_EXECSPACE>::