triton.language.store¶
- triton.language.store(pointer, value, mask=None)¶
- Stores - valueblock of elements in memory, element-wise, at the memory locations specified by- pointer.- valueis implicitly broadcast to- pointer.shapeand typecast to- pointer.dtype.element_ty.- Parameters
- pointer (Block of dtype=triton.PointerDType) – The memory locations where the elements of - valueare stored.
- value (Block) – The block of elements to be stored. 
- mask (Block of triton.int1, optional) – If mask[idx] is false, do not store - value[idx]at- pointer[idx].