@@ -49,10 +49,10 @@ static llvm::cl::opt<bool> clEnableFusePaddingIntoLinalgProducerOps(
4949
5050static llvm::cl::opt<int > clPadFactor (
5151 " iree-dispatch-creation-pad-factor" ,
52- llvm::cl::desc (
53- " Provides padding size hints that will be attached to "
54- " encodings. This only affects the experimental data tiling "
55- " path in Flow with iree-dispatch-creation-experimental-data-tiling." ),
52+ llvm::cl::desc (" Provides padding size hints that will be attached to "
53+ " encodings. This only affects the experimental data tiling "
54+ " path in DispatchCreation with "
55+ " iree-dispatch-creation-experimental-data-tiling." ),
5656 llvm::cl::init(32 ));
5757
5858static llvm::cl::opt<bool > clEnablePadHandling (
@@ -337,14 +337,14 @@ void registerDispatchCreationPasses() {
337337}
338338
339339void registerDispatchCreationPipelines () {
340- PassPipelineRegistration<TransformOptions> flowDispatchRegionCreationPipeline (
340+ PassPipelineRegistration<TransformOptions> dispatchCreationPipeline (
341341 " iree-dispatch-creation-pipeline" ,
342342 " Flag used to run passes that form dispatch regions" ,
343343 [](OpPassManager &passManager, const TransformOptions &transformOptions) {
344344 buildDispatchCreationPassPipeline (passManager, transformOptions);
345345 });
346346
347- PassPipelineRegistration<> flowDispatchRegionFormationPreprocessingPipeline (
347+ PassPipelineRegistration<> dispatchCreationPreprocessingPipeline (
348348 " iree-dispatch-creation-preprocessing-pipeline" ,
349349 " Flag used to run preprocessing passes that run passes before dispatch "
350350 " region formation. Used only for testing" ,
0 commit comments