1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
// SPDX-FileCopyrightText: Copyright Contributors to the Kokkos project
#include <gtest/gtest.h>
#include <Kokkos_Macros.hpp>
#ifdef KOKKOS_ENABLE_EXPERIMENTAL_CXX20_MODULES
import kokkos.core;
#else
#include <Kokkos_Core.hpp>
#endif
#include <type_traits>
#include <utility>
namespace {
template <class ExecutionSpace>
struct TestSwap {
KOKKOS_FUNCTION void operator()(int, int& err) const {
{
int a = 1;
int b = 2;
Kokkos::kokkos_swap(a, b);
if (!(a == 2 && b == 1)) {
Kokkos::printf("Failed Kokkos::kokkos_swap(int, int)\n");
++err;
}
}
{
float a = 1;
float b = 2;
Kokkos::kokkos_swap(a, b);
if (!(a == 2 && b == 1)) {
Kokkos::printf("Failed Kokkos::kokkos_swap(float, float)\n");
++err;
}
}
{
int a[3] = {1, 2, 3};
int b[3] = {4, 5, 6};
Kokkos::kokkos_swap(a, b);
if (!(a[0] == 4 && a[1] == 5 && a[2] == 6 && b[0] == 1 && b[1] == 2 &&
b[2] == 3)) {
Kokkos::printf("Failed Kokkos::kokkos_swap(int[3], int[3])\n");
++err;
}
}
}
TestSwap() {
int errors;
Kokkos::parallel_reduce(
"TestSwap", Kokkos::RangePolicy<ExecutionSpace>(0, 1), *this, errors);
EXPECT_EQ(errors, 0);
}
};
TEST(TEST_CATEGORY, kokkos_swap) { TestSwap<TEST_EXECSPACE>(); }
} // namespace
|