Searched defs:AtomicMax (Results 1 – 2 of 2) sorted by relevance
332 struct AtomicMax { struct333 __device__ Type operator()(Type &x, Type y) const { return atomicMax(&x, y); } in operator ()()
185 struct AtomicMax { struct186 KOKKOS_INLINE_FUNCTION void operator()(Type &x, Type y) const { Kokkos::atomic_fetch_max(&x, y); } in operator ()()