Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[backend] Ensure a deterministic allocation order of scratch smem buf…
…fers (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.