Skip to content

Commit

Permalink
Build fix
Browse files Browse the repository at this point in the history
  • Loading branch information
KavithaTipturMadhu committed Feb 28, 2024
1 parent c8b9698 commit 49bbe8f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lib/TPP/DefaultPipeline.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,9 @@ struct DefaultPipeline : public tpp::impl::DefaultPipelineBase<DefaultPipeline>,
mlir::tpp::SCFParallelLoopTilingOptions tilingOptions;
tilingOptions.tileSizes = parallelTaskGrid;
pm.addPass(createSCFParallelLoopTiling(tilingOptions));
pm.addNestedPass<func::FuncOp>(createTileConfigInsertionPass());
pm.addNestedPass<func::FuncOp>(createIntelAMXTileConfigInsertionPass());
pm.addNestedPass<func::FuncOp>(createCanonicalizerPass());
pm.addNestedPass<func::FuncOp>(createIntelAMXTileConfigHoistingPass());
pm.addPass(createConvertSCFToOpenMPPass());
}
pm.addPass(createConvertVectorToSCFPass());
Expand Down

0 comments on commit 49bbe8f

Please sign in to comment.