Files
lammps/lib/kokkos/core/unit_test/TestJoinBackwardCompatibility.hpp
2023-11-21 15:02:12 -07:00

130 lines
4.7 KiB
C++

//@HEADER
// ************************************************************************
//
// Kokkos v. 4.0
// Copyright (2022) National Technology & Engineering
// Solutions of Sandia, LLC (NTESS).
//
// Under the terms of Contract DE-NA0003525 with NTESS,
// the U.S. Government retains certain rights in this software.
//
// Part of Kokkos, under the Apache License v2.0 with LLVM Exceptions.
// See https://kokkos.org/LICENSE for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//@HEADER
#include <Kokkos_Core.hpp>
#include <gtest/gtest.h>
#ifndef KOKKOS_ENABLE_OPENACC // FIXME_OPENACC - temporarily disabled due to
// unimplemented reduction features
namespace {
enum MyErrorCode {
no_error = 0b000,
error_operator_plus_equal = 0b001,
error_operator_plus_equal_volatile = 0b010,
error_join_volatile = 0b100,
expected_join_volatile = 0b1000
};
KOKKOS_FUNCTION constexpr MyErrorCode operator|(MyErrorCode lhs,
MyErrorCode rhs) {
return static_cast<MyErrorCode>(static_cast<int>(lhs) |
static_cast<int>(rhs));
}
static_assert((no_error | error_operator_plus_equal_volatile) ==
error_operator_plus_equal_volatile,
"");
static_assert((error_join_volatile | error_operator_plus_equal) == 0b101, "");
struct MyJoinBackCompatValueType {
MyErrorCode err = no_error;
};
KOKKOS_FUNCTION void operator+=(MyJoinBackCompatValueType &x,
const MyJoinBackCompatValueType &y) {
x.err = x.err | y.err | error_operator_plus_equal;
}
KOKKOS_FUNCTION void operator+=(volatile MyJoinBackCompatValueType &x,
const volatile MyJoinBackCompatValueType &y) {
x.err = x.err | y.err | error_operator_plus_equal_volatile;
}
struct ReducerWithJoinThatTakesNonVolatileQualifiedArgs {
using reducer = ReducerWithJoinThatTakesNonVolatileQualifiedArgs;
using value_type = MyJoinBackCompatValueType;
KOKKOS_FUNCTION void join(MyJoinBackCompatValueType &x,
MyJoinBackCompatValueType const &y) const {
x.err = x.err | y.err;
}
KOKKOS_FUNCTION void operator()(int, MyJoinBackCompatValueType &) const {}
KOKKOS_FUNCTION
ReducerWithJoinThatTakesNonVolatileQualifiedArgs() {}
};
struct ReducerWithJoinThatTakesBothVolatileAndNonVolatileQualifiedArgs {
using reducer =
ReducerWithJoinThatTakesBothVolatileAndNonVolatileQualifiedArgs;
using value_type = MyJoinBackCompatValueType;
KOKKOS_FUNCTION void join(MyJoinBackCompatValueType &x,
MyJoinBackCompatValueType const &y) const {
x.err = x.err | y.err;
}
KOKKOS_FUNCTION void join(MyJoinBackCompatValueType volatile &x,
MyJoinBackCompatValueType const volatile &y) const {
x.err = x.err | y.err | error_join_volatile;
}
KOKKOS_FUNCTION void operator()(int, MyJoinBackCompatValueType &) const {}
KOKKOS_FUNCTION
ReducerWithJoinThatTakesBothVolatileAndNonVolatileQualifiedArgs() {}
};
struct ReducerWithJoinThatTakesVolatileQualifiedArgs {
using reducer = ReducerWithJoinThatTakesVolatileQualifiedArgs;
using value_type = MyJoinBackCompatValueType;
KOKKOS_FUNCTION void join(MyJoinBackCompatValueType volatile &x,
MyJoinBackCompatValueType const volatile &y) const {
x.err = x.err | y.err | expected_join_volatile;
}
KOKKOS_FUNCTION void operator()(int, MyJoinBackCompatValueType &) const {}
KOKKOS_FUNCTION ReducerWithJoinThatTakesVolatileQualifiedArgs() {}
};
void test_join_backward_compatibility() {
MyJoinBackCompatValueType result;
Kokkos::RangePolicy<TEST_EXECSPACE> policy(0, 1);
Kokkos::parallel_reduce(
policy, ReducerWithJoinThatTakesBothVolatileAndNonVolatileQualifiedArgs{},
result);
ASSERT_EQ(result.err, no_error);
Kokkos::parallel_reduce(
policy, ReducerWithJoinThatTakesNonVolatileQualifiedArgs{}, result);
ASSERT_EQ(result.err, no_error);
// avoid warnings unused function 'operator+='
result += {};
ASSERT_EQ(result.err, error_operator_plus_equal);
static_cast<MyJoinBackCompatValueType volatile &>(result) +=
static_cast<MyJoinBackCompatValueType const volatile &>(result);
ASSERT_EQ(result.err,
error_operator_plus_equal | error_operator_plus_equal_volatile);
MyJoinBackCompatValueType result2;
volatile MyJoinBackCompatValueType vol_result;
ReducerWithJoinThatTakesVolatileQualifiedArgs my_red;
my_red.join(vol_result, result2);
ASSERT_EQ(vol_result.err, expected_join_volatile);
}
TEST(TEST_CATEGORY, join_backward_compatibility) {
test_join_backward_compatibility();
}
} // namespace
#endif