Script.atomic.global_scatter_min¶
- Script.atomic.global_scatter_min(dst, *, dim, indices, values, sem='relaxed', scope='gpu', output=None)[source]¶
Scatter-min into a global tile along
dim.See
shared_scatter_add()for the parameter description.Notes
Thread group: Can be executed by any sized thread group.
Hardware: Requires compute capability 7.0+ (sm_70).
PTX:
atom.{sem}.{scope}.global.min.s32.
- Parameters:
dst (GlobalTensor)
dim (int)
indices (RegisterTensor)
values (RegisterTensor)
sem (str)
scope (str)
output (RegisterTensor | None)
- Return type:
RegisterTensor | None