triton.language.atomic_min¶
- triton.language.atomic_min(pointer, val, mask=None)¶
Performs an atomic min at the memory location specified by
pointer
.Return the data stored at
pointer
before the atomic operation.- Parameters
pointer (Block of dtype=triton.PointerDType) – The memory locations to apply min.
val (Block of dtype=`pointer.dtype.element_ty`) – The values to min in the atomic object.
mask (Block of triton.int1, optional) – If mask[idx] is false, do not apply min.