From fde399b70ec1568bed5829152aefd9ba816a905c Mon Sep 17 00:00:00 2001 From: "Ngun, Raymond" Date: Wed, 5 Feb 2025 21:30:26 +0000 Subject: [PATCH] Add Greater Op to dimension check --- onnxruntime/core/providers/openvino/ov_versions/data_ops.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/onnxruntime/core/providers/openvino/ov_versions/data_ops.cc b/onnxruntime/core/providers/openvino/ov_versions/data_ops.cc index fd71eebfe533a..44f6e4172c496 100644 --- a/onnxruntime/core/providers/openvino/ov_versions/data_ops.cc +++ b/onnxruntime/core/providers/openvino/ov_versions/data_ops.cc @@ -361,6 +361,7 @@ void DataOps::populate_op_mode_supported() { no_dimension_supported_.push_back({"Expand", V_2024_3, {"CPU", "GPU"}}); no_dimension_supported_.push_back({"Floor", V_2020_4, {"All"}}); no_dimension_supported_.push_back({"Gather", V_2020_4, {"All"}}); + no_dimension_supported_.push_back({"Greater", V_2024_4, {"All"}}); no_dimension_supported_.push_back({"Identity", V_2023_0, {"All"}}); no_dimension_supported_.push_back({"If", V_2022_3, {"CPU", "GPU"}}); no_dimension_supported_.push_back({"Less", V_2022_1, {"CPU"}});