Skip to content

Commit 70e306b

Browse files
authored
fix nested parallel loop introduced by linalg op lowering (#302)
fix nested parallel loop
1 parent b593976 commit 70e306b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/gc/Transforms/Pipeline.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ void populateCPUPipeline(mlir::OpPassManager &pm) {
182182
populateBufferizationPasses(pm);
183183
// REMOVE this pass after the TensorPasses are added. Currently we add this
184184
// pass to make the pipeline work properly
185-
pm.addNestedPass<func::FuncOp>(createConvertLinalgToParallelLoopsPass());
185+
pm.addNestedPass<func::FuncOp>(createConvertLinalgToLoopsPass());
186186
populateMicroKernelPasses(pm);
187187
populateCPURuntimePasses(pm);
188188
// back-end, llvm dialect

0 commit comments

Comments
 (0)