Skip to content

Commit 6da3dea

Browse files
committed
Fix openvino CI
1 parent 8b7c924 commit 6da3dea

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

onnxruntime/test/providers/cpu/reduction/reduction_ops_test.cc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3721,7 +3721,8 @@ TEST(ReductionOpTest, ArgMin_float_first_index_random) {
37213721
test.AddInput<float>("data", {vector_size}, data_vec);
37223722
test.AddOutput<int64_t>("reduced", {1}, {min_index});
37233723

3724-
test.Run(OpTester::ExpectResult::kExpectSuccess, "", {kTensorrtExecutionProvider});
3724+
// Exclude OpenVINO since it failed to handle this case.
3725+
test.Run(OpTester::ExpectResult::kExpectSuccess, "", {kTensorrtExecutionProvider, kOpenVINOExecutionProvider});
37253726
}
37263727

37273728
TEST(ReductionOpTest, OptimizeShapeForFastReduce_ReduceDimWithZero1) {

0 commit comments

Comments
 (0)