[Mlir-commits] [mlir] [MLIR][XeGPU] Add offset operands to load_nd/store_nd/prefetch_nd (PR #149424)
Adam Siemieniuk
llvmlistbot at llvm.org
Tue Jul 22 22:50:48 PDT 2025
adam-smnk wrote:
> Rewrite pass need to refactored to adapt to the new OP semantics. The refactor should make sure they work by then.
Agreed. And in the meantime it'd be good if they didn't break IR that has offsets.
A simple one liner matcher check:
```
if(hasOffsets)
return failure();
```
in a few places should do the trick.
https://github.com/llvm/llvm-project/pull/149424
More information about the Mlir-commits
mailing list