From 03c2fd1e354d419c9d50e04e0635befa0a74febd Mon Sep 17 00:00:00 2001 From: Xavier Dupre Date: Mon, 24 Jun 2024 16:28:26 +0200 Subject: [PATCH] remove one change Signed-off-by: Xavier Dupre --- onnxscript/optimizer/constant_folding.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/onnxscript/optimizer/constant_folding.py b/onnxscript/optimizer/constant_folding.py index 23661b786..d119c41e9 100644 --- a/onnxscript/optimizer/constant_folding.py +++ b/onnxscript/optimizer/constant_folding.py @@ -19,7 +19,7 @@ logger = logging.getLogger(__name__) -_DEFAULT_CONSTANT_FOLD_SIZE_LIMIT = 1024 * 1024 // 4 +_DEFAULT_CONSTANT_FOLD_SIZE_LIMIT = 1024 * 1024 # Ops excluded from constant-propagation: # * Random ops, which are not deterministic (checked below)