You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[backend] Ensure a deterministic allocation order of scratch smem buffers (triton-lang#5595)
I was seeing non-deterministic SMEM allocation sizes and offsets across
compilations with same source and compiler. It seems due to scratch
buffers processed in a non-deterministic order, due to the use of
`DenseMap`. Using `MapVector` should fix it.
0 commit comments