[Mlir-commits] [mlir] [mlir][TilingInterface] Use `LoopLikeOpInterface` in tiling using SCF to unify tiling with `scf.for` and `scf.forall`. (PR #77874)
Abhishek Varma
llvmlistbot at llvm.org
Fri Jan 12 00:04:06 PST 2024
================
@@ -187,10 +190,10 @@ tileAndFuseProducerOfSlice(RewriterBase &rewriter,
/// where `%0` had other uses as well. If not reconstructed from within the loop
/// body, uses of `%0` could not be replaced, making it still live and the
/// fusion immaterial.
-void yieldReplacementForFusedProducer(
+LogicalResult yieldReplacementForFusedProducer(
----------------
Abhishek-Varma wrote:
Add a `if (failed(yieldReplacementForFusedProducer(...)))` check - I believe only that is the issue in the CI failure.
https://github.com/llvm/llvm-project/pull/77874
More information about the Mlir-commits
mailing list