remove volatile to fix build error from Kokkos commit (5574130fb333ac1745a52d4a6383ac95c64bdc0f)
This commit is contained in:
@ -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]);
|
||||
|
||||
Reference in New Issue
Block a user