remove volatile to fix build error from Kokkos commit (5574130fb333ac1745a52d4a6383ac95c64bdc0f)

This commit is contained in:
Nicholas Curtis
2022-04-08 11:13:31 -05:00
parent b73437aa63
commit d99b1258e3

View File

@ -57,8 +57,8 @@ public:
}
KOKKOS_INLINE_FUNCTION
void join(volatile value_type &dst,
const volatile value_type &src) const {
void join(value_type &dst,
const value_type &src) const {
dst.value[0][0] = MIN(dst.value[0][0],src.value[0][0]);
dst.value[0][1] = MAX(dst.value[0][1],src.value[0][1]);
dst.value[1][0] = MIN(dst.value[1][0],src.value[1][0]);