Skip to content

Commit

Permalink
Correct typo and code review changes.
Browse files Browse the repository at this point in the history
  • Loading branch information
uazizTT committed Nov 5, 2024
1 parent 63421bd commit 47d11bc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion include/ttmlir/Dialect/TTIR/Pipelines/TTIRPipelines.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ namespace mlir::tt::ttir {
//
struct StableHLOToTTIRPipelineOptions
: public PassPipelineOptions<StableHLOToTTIRPipelineOptions> {
// Option to enable --remove-dead-values optimization pass.
Option<bool> removeDeadValuesEnabled{
*this, "enable-remove-dead-values",
llvm::cl::desc("Enable --remove-dead-values optimization pass."),
Expand All @@ -35,6 +34,8 @@ struct StableHLOToTTIRPipelineOptions
// This pass will convert stablehlo.composite ops into func.call ops so
// that the TTIR inliner pass may inline the ops.
llvm::cl::init(true)};
Option<bool> sparseConstantPropagationEnabled{
*this, "enable-sparse-constant-propagation",
llvm::cl::desc("Enable --sccp optimization pass."), llvm::cl::init(true)};
};

Expand Down

0 comments on commit 47d11bc

Please sign in to comment.