Skip to content

Commit c01cf58

Browse files
Merge pull request #1069 from intel/jatin_fix_resize_op
1 parent def12b3 commit c01cf58

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

onnxruntime/core/providers/openvino/ov_versions/data_ops.cc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -491,7 +491,8 @@ void DataOps::populate_op_mode_supported() {
491491
}
492492
{
493493
UnsupportedOpMode obj = {{V_2023_1, V_2023_2, V_2023_3, V_2024_0, V_2024_1, V_2024_2,
494-
V_2024_3, V_2024_4, V_2024_5, V_2024_6, V_2025_0, V_2025_1, V_2025_2, V_2025_3, V_2025_4},
494+
V_2024_3, V_2024_4, V_2024_5, V_2024_6, V_2025_0, V_2025_1,
495+
V_2025_2, V_2025_3, V_2025_4, V_2026_0, V_2026_1},
495496
[this](const Node* node, const InitializedTensorSet&) {
496497
auto& attributes = node->GetAttributes();
497498
if (attributes.count("coordinate_transformation_mode") > 0) {

onnxruntime/test/providers/cpu/tensor/quantize_linear_test.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1450,7 +1450,7 @@ void QuantizeLinearOp19Test(bool saturate) {
14501450
y.push_back(OutT(it, saturate));
14511451
}
14521452
test.AddOutput<OutT>("y", dims, y);
1453-
test.Run(OpTester::ExpectResult::kExpectSuccess, "", {kTensorrtExecutionProvider});
1453+
test.Run(OpTester::ExpectResult::kExpectSuccess, "", {kTensorrtExecutionProvider, kOpenVINOExecutionProvider});
14541454
}
14551455

14561456
TEST(QuantizeLinearOpTest, Float8) {
@@ -1492,7 +1492,7 @@ void QuantizeLinearOp19F16Test(bool saturate) {
14921492
y.push_back(OutT(it, saturate));
14931493
}
14941494
test.AddOutput<OutT>("y", dims, y);
1495-
test.Run(OpTester::ExpectResult::kExpectSuccess, "", {kTensorrtExecutionProvider});
1495+
test.Run(OpTester::ExpectResult::kExpectSuccess, "", {kTensorrtExecutionProvider, kOpenVINOExecutionProvider});
14961496
}
14971497

14981498
TEST(QuantizeLinearOpMLFloat16Test, Float8) {

0 commit comments

Comments
 (0)