Files
clang-p2996/mlir/lib/Dialect/SCF/Transforms/TileUsingInterface.cpp
Yun-Fly 2d4bdfba96 [mlir][scf] Extend consumer fuse to single nested scf.for (#94190)
Refactor current consumer fusion based on `addInitOperandsToLoopNest` to support single nested `scf.for`, E.g.

```
%0 = scf.for() {
  %1 = scf.for() {
     tiledProducer
  }
  yield %1
}
%2 = consumer ins(%0)
```
2024-09-12 10:02:57 +08:00

79 KiB