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 Oct 17, 2024
1 parent e9b2a3e commit add55ca
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions include/ttmlir/Dialect/TTIR/Pipelines/TTIRPipelines.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,12 @@ 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."),
llvm::cl::init(true)};
Option<bool> sparseConstantPropogationEnabled{
*this, "enable-sparse-constant-propogation",
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 add55ca

Please sign in to comment.