Skip to content

Commit

Permalink
[NFC] Update old naming from flow to dispatch creation (#18904)
Browse files Browse the repository at this point in the history
Update naming from `Flow` -> `DispatchCreation` in Passes.cpp

Signed-off-by: Ian Wood <[email protected]>
  • Loading branch information
IanWood1 authored Oct 25, 2024
1 parent 55c5562 commit 0c2c627
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions compiler/src/iree/compiler/DispatchCreation/Passes.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,10 @@ static llvm::cl::opt<bool> clEnableFusePaddingIntoLinalgProducerOps(

static llvm::cl::opt<int> clPadFactor(
"iree-dispatch-creation-pad-factor",
llvm::cl::desc(
"Provides padding size hints that will be attached to "
"encodings. This only affects the experimental data tiling "
"path in Flow with iree-dispatch-creation-experimental-data-tiling."),
llvm::cl::desc("Provides padding size hints that will be attached to "
"encodings. This only affects the experimental data tiling "
"path in DispatchCreation with "
"iree-dispatch-creation-experimental-data-tiling."),
llvm::cl::init(32));

static llvm::cl::opt<bool> clEnablePadHandling(
Expand Down Expand Up @@ -337,14 +337,14 @@ void registerDispatchCreationPasses() {
}

void registerDispatchCreationPipelines() {
PassPipelineRegistration<TransformOptions> flowDispatchRegionCreationPipeline(
PassPipelineRegistration<TransformOptions> dispatchCreationPipeline(
"iree-dispatch-creation-pipeline",
"Flag used to run passes that form dispatch regions",
[](OpPassManager &passManager, const TransformOptions &transformOptions) {
buildDispatchCreationPassPipeline(passManager, transformOptions);
});

PassPipelineRegistration<> flowDispatchRegionFormationPreprocessingPipeline(
PassPipelineRegistration<> dispatchCreationPreprocessingPipeline(
"iree-dispatch-creation-preprocessing-pipeline",
"Flag used to run preprocessing passes that run passes before dispatch "
"region formation. Used only for testing",
Expand Down

0 comments on commit 0c2c627

Please sign in to comment.