From ac377422ea2e2fd015ec9c4085101d8d36cc8988 Mon Sep 17 00:00:00 2001 From: Haruki Imai Date: Wed, 11 Sep 2024 02:01:12 -0400 Subject: [PATCH] The option is true by default. Signed-off-by: Haruki Imai --- src/Accelerators/NNPA/Compiler/NNPACompilerOptions.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Accelerators/NNPA/Compiler/NNPACompilerOptions.cpp b/src/Accelerators/NNPA/Compiler/NNPACompilerOptions.cpp index 56c3d7a53b..d319d9e0b8 100644 --- a/src/Accelerators/NNPA/Compiler/NNPACompilerOptions.cpp +++ b/src/Accelerators/NNPA/Compiler/NNPACompilerOptions.cpp @@ -104,6 +104,6 @@ llvm::cl::opt 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