1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
// SPDX-FileCopyrightText: Copyright Contributors to the Kokkos project
#include <TestAtomicOperations.hpp>
namespace Test {
TEST(TEST_CATEGORY, atomic_operations_long) {
// FIXME_OPENMPTARGET - causes runtime failure with CrayClang compiler
#if defined(KOKKOS_COMPILER_CRAY_LLVM) && defined(KOKKOS_ENABLE_OPENMPTARGET)
GTEST_SKIP() << "known to fail with OpenMPTarget+Cray LLVM";
#endif
const int start = -5;
const int end = 11;
for (int i = start; i < end; ++i) {
for (int t = 0; t < 16; t++)
ASSERT_TRUE((TestAtomicOperations::AtomicOperationsTestIntegralType<
long int, TEST_EXECSPACE>(i, end - i + start, t)));
}
}
} // namespace Test
|