Philippe Tillet

Results 5 issues of Philippe Tillet

This issue is meant to summarize what needs to be done to the `triton-mlir` branch before it can be merged into the main branch. It is not exhaustive, and has...

Right now there is some code duplication, as the `triton-translate` utility does a subset of what the `triton.compiler` submodule is capable of. We should unify both so we don't have...

enhancement

``` import triton import triton.language as tl # triton kernel @triton.jit def loop(X, stride_xm, Z, stride_zn, bound, BLOCK_M: tl.constexpr, BLOCK_N: tl.constexpr): off_m = tl.arange(0, BLOCK_M) off_n = tl.arange(0, BLOCK_M) Xs...

bug