From ad0673451bf52ccb53336dfaa6c32fd2b12a4425 Mon Sep 17 00:00:00 2001 From: Haruki Imai Date: Wed, 11 Sep 2024 21:41:00 -0400 Subject: [PATCH] Set the option false by default for testing. Signed-off-by: Haruki Imai --- src/Accelerators/NNPA/Compiler/NNPACompilerOptions.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Accelerators/NNPA/Compiler/NNPACompilerOptions.cpp b/src/Accelerators/NNPA/Compiler/NNPACompilerOptions.cpp index d319d9e0b8..67a3e9d2d6 100644 --- a/src/Accelerators/NNPA/Compiler/NNPACompilerOptions.cpp +++ b/src/Accelerators/NNPA/Compiler/NNPACompilerOptions.cpp @@ -105,5 +105,5 @@ llvm::cl::opt nnpaDelayStickifiedConstGen( llvm::cl::desc( "Generate stickified constants when storing constants to file. This " "will be able to reduce peak memory usage. Default is true."), - llvm::cl::init(true), llvm::cl::cat(OnnxMlirCommonOptions)); + llvm::cl::init(false), llvm::cl::cat(OnnxMlirCommonOptions)); } // namespace onnx_mlir