cupyx.jit.atomic_inc#
- cupyx.jit.atomic_inc(array, index, value, alt_value=None) = <cupyx.jit function>#
Calls the
atomicInc
function to operate atomically onarray[index]
. Please refer to Atomic Functions for detailed explanation.- Parameters:
array – A
cupy.ndarray
to index over.index – A valid index such that the address to the corresponding array element
array[index]
can be computed.value – Represent the value to use for the specified operation. For the case of
atomic_cas
, this is the value forarray[index]
to compare with.alt_value – Only used in
atomic_cas
to represent the value to swap to.