Followup for #2520
to add weight activation ordering since fp8 block is now supported.
The only change would be
g_idx = range / groupsize -> g_idx = range / block_width
this would actually consolidate the existing code because as of now we have 2 ways to map columns, g_idx and the calculation for fp8 block which is doing the same thing as g_idx but as a one off. If we change it to use g_idx then we get actorder almost for free
- use g_idx for fp8 block indexing
- add fp8 block + act order
Followup for #2520
to add weight activation ordering since fp8 block is now supported.
The only change would be
g_idx = range / groupsize -> g_idx = range / block_width
this would actually consolidate the existing code because as of now we have 2 ways to map columns, g_idx and the calculation for fp8 block which is doing the same thing as g_idx but as a one off. If we change it to use g_idx then we get actorder almost for free