triton.language.arange
- triton.language.arange(start, end, _builder=None)
Returns contiguous values within the half-open interval
[start, end)
.end - start
must be less than or equal toTRITON_MAX_TENSOR_NUMEL = 1048576
- Parameters:
start (int32) – Start of the interval. Must be a power of two.
end (int32) – End of the interval. Must be a power of two greater than
start
.