triton.language.swizzle2d¶
- triton.language.swizzle2d(i, j, size_i, size_j, size_g)¶
Transforms the indices of a row-major size_i * size_j matrix into the indices of a column-major matrix for each group of size_g rows.
For example, for
size_i = size_j = 4
andsize_g = 2
, it will transform[[0 , 1 , 2 , 3 ], [4 , 5 , 6 , 7 ], [8 , 9 , 10, 11], [12, 13, 14, 15]]
into
[[0, 2, 4 , 6 ], [1, 3, 5 , 7 ], [8, 10, 12, 14], [9, 11, 13, 15]]