From bb576b83258db36c06149ed15c3568aa57754c56 Mon Sep 17 00:00:00 2001 From: wjj19950828 Date: Tue, 16 Aug 2022 21:10:41 +0800 Subject: [PATCH] mv dynamic default false to true --- tests/onnx/onnxbase.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/onnx/onnxbase.py b/tests/onnx/onnxbase.py index 99d5a03..e009ea9 100644 --- a/tests/onnx/onnxbase.py +++ b/tests/onnx/onnxbase.py @@ -107,7 +107,7 @@ class ONNXConverter(object): rtol=1e-5, attrs=[], enable_onnx_checker=True, - run_dynamic=False): + run_dynamic=True): self.op_type = op_type assert isinstance(self.op_type, str), "The dtype of op_type must be string!" -- GitLab