Lines Matching defs:pipeline
31 /// This function implements the inliner optimization pipeline.
51 /// the specified pass pipeline on the given operation
57 static LogicalResult runPipelineHelper(Pass &pass, OpPassManager &pipeline,
59 return mlir::cast<InlinerPass>(pass).runPipeline(pipeline, op);
160 // Initialize the pipeline builder for operations without the dedicated
161 // optimization pipeline in opPipelineList to use the option string.
162 // TODO: Use a generic pass manager for the pre-inline pipeline, and remove
175 for (OpPassManager pipeline : opPipelineList)
176 if (!pipeline.empty())
177 pipelines.try_emplace(pipeline.getOpAnchorName(), pipeline);