From 4ec5db8ead3a80146366e0cbbcbe2f370198c963 Mon Sep 17 00:00:00 2001 From: Randy Shuai Date: Fri, 27 Oct 2023 13:11:47 -0700 Subject: [PATCH] set min ver supporting computeV2 to 16 --- onnxruntime/core/session/custom_ops.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/onnxruntime/core/session/custom_ops.cc b/onnxruntime/core/session/custom_ops.cc index 5f1d5036e8310..041250adc3fc0 100644 --- a/onnxruntime/core/session/custom_ops.cc +++ b/onnxruntime/core/session/custom_ops.cc @@ -28,7 +28,7 @@ static constexpr uint32_t min_ort_version_with_variadic_io_support = 14; #endif #if !defined(ORT_MINIMAL_BUILD) || defined(ORT_MINIMAL_BUILD_CUSTOM_OPS) -static constexpr uint32_t min_ort_version_with_compute_v2_support = 17; +static constexpr uint32_t min_ort_version_with_compute_v2_support = 16; static constexpr uint32_t min_ort_version_with_shape_inference = 17; #endif