Skip to content

Commit 0c2c627

Browse files
authored
[NFC] Update old naming from flow to dispatch creation (#18904)
Update naming from `Flow` -> `DispatchCreation` in Passes.cpp Signed-off-by: Ian Wood <[email protected]>
1 parent 55c5562 commit 0c2c627

File tree

1 file changed

+6
-6
lines changed
  • compiler/src/iree/compiler/DispatchCreation

1 file changed

+6
-6
lines changed

compiler/src/iree/compiler/DispatchCreation/Passes.cpp

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,10 @@ static llvm::cl::opt<bool> clEnableFusePaddingIntoLinalgProducerOps(
4949

5050
static 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

5858
static llvm::cl::opt<bool> clEnablePadHandling(
@@ -337,14 +337,14 @@ void registerDispatchCreationPasses() {
337337
}
338338

339339
void 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

Comments
 (0)