From 5a0a648427b95e7ae12544080bcadfa512d7f824 Mon Sep 17 00:00:00 2001 From: Christoph Berganski Date: Tue, 27 Aug 2024 16:29:04 +0200 Subject: [PATCH] [Opset] Increase preferred opset version to 12 This is the minimum opset version to support the Celu operator: https://onnx.ai/onnx/operators/onnx__Celu.html --- src/qonnx/util/basic.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/qonnx/util/basic.py b/src/qonnx/util/basic.py index 363aa501..dcb72b3e 100644 --- a/src/qonnx/util/basic.py +++ b/src/qonnx/util/basic.py @@ -48,7 +48,7 @@ def get_preferred_onnx_opset(): "Return preferred ONNX opset version for QONNX" - return 11 + return 12 def qonnx_make_model(graph_proto, **kwargs):