[Mlir-commits] [mlir] [MLIR] Add `InParallelOpInterface` for parallel combining operations (PR #157736)

Quinn Dawkins llvmlistbot at llvm.org
Wed Sep 10 07:12:05 PDT 2025


================
@@ -974,7 +974,9 @@ struct ParallelInsertSliceOpInterface
         parallelInsertSliceOp.getParallelCombiningParent();
 
     // Bufferize the op outside of the parallel combining terminator.
-    rewriter.setInsertionPoint(parallelCombiningParent);
+    if (parallelCombiningParent) {
----------------
qedawkins wrote:

We're keeping insertion ops tied to the terminator so this is not needed.

https://github.com/llvm/llvm-project/pull/157736


More information about the Mlir-commits mailing list