Searched defs:AtomicMin (Results 1 – 2 of 2) sorted by relevance
328 struct AtomicMin { struct329 __device__ Type operator()(Type &x, Type y) const { return atomicMin(&x, y); } in operator ()()
181 struct AtomicMin { struct182 KOKKOS_INLINE_FUNCTION void operator()(Type &x, Type y) const { Kokkos::atomic_fetch_min(&x, y); } in operator ()()