From bfa59b70b5894277bd25c4b86332faef33a03fa6 Mon Sep 17 00:00:00 2001 From: Christoph Berganski Date: Tue, 27 Aug 2024 16:29:04 +0200 Subject: [PATCH 1/2] [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 cef4f67b..336daf39 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 get_preferred_qonnx_opset(): From a1ea5a6446614b4e92bb1849aeebf02a4b3bc041 Mon Sep 17 00:00:00 2001 From: Christoph Berganski Date: Fri, 14 Feb 2025 14:10:44 +0100 Subject: [PATCH 2/2] [Opset] Increase preferred opset version to 13 This opset vversion is required by Split and Concat as implemented in FINN by Xilinx/finn PRs #1189, #1193 and #1194. --- 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 336daf39..ab737101 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 12 + return 13 def get_preferred_qonnx_opset():