Skip to content

Commit

Permalink
The option is true by default.
Browse files Browse the repository at this point in the history
Signed-off-by: Haruki Imai <imaihal@jp.ibm.com>
  • Loading branch information
imaihal committed Sep 11, 2024
1 parent 208020b commit ac37742
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Accelerators/NNPA/Compiler/NNPACompilerOptions.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,6 @@ llvm::cl::opt<bool> nnpaDelayStickifiedConstGen(
"nnpa-delay-stickified-const-generation",
llvm::cl::desc(
"Generate stickified constants when storing constants to file. This "
"will be able to reduce peak memory usage. Default is false."),
llvm::cl::init(false), llvm::cl::cat(OnnxMlirCommonOptions));
"will be able to reduce peak memory usage. Default is true."),
llvm::cl::init(true), llvm::cl::cat(OnnxMlirCommonOptions));
} // namespace onnx_mlir

0 comments on commit ac37742

Please sign in to comment.