Home
last modified time | relevance | path

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

/petsc/include/petsc/private/
H A Dcupmatomics.hpp332 struct AtomicMax { struct
333 __device__ Type operator()(Type &x, Type y) const { return atomicMax(&x, y); } in operator ()()
/petsc/src/vec/is/sf/impls/basic/kokkos/
H A Dsfkok.kokkos.cxx185 struct AtomicMax { struct
186 KOKKOS_INLINE_FUNCTION void operator()(Type &x, Type y) const { Kokkos::atomic_fetch_max(&x, y); } in operator ()()