Home
last modified time | relevance | path

Searched defs:AtomicMin (Results 1 – 2 of 2) sorted by relevance

/petsc/include/petsc/private/
H A Dcupmatomics.hpp328 struct AtomicMin { struct
329 __device__ Type operator()(Type &x, Type y) const { return atomicMin(&x, y); } in operator ()()
/petsc/src/vec/is/sf/impls/basic/kokkos/
H A Dsfkok.kokkos.cxx181 struct AtomicMin { struct
182 KOKKOS_INLINE_FUNCTION void operator()(Type &x, Type y) const { Kokkos::atomic_fetch_min(&x, y); } in operator ()()