diff --git a/onnxruntime/test/providers/cpu/nn/pool_op_test.cc b/onnxruntime/test/providers/cpu/nn/pool_op_test.cc index c050eeae89..a06955a2f9 100644 --- a/onnxruntime/test/providers/cpu/nn/pool_op_test.cc +++ b/onnxruntime/test/providers/cpu/nn/pool_op_test.cc @@ -296,7 +296,11 @@ TEST(PoolTest, MaxPool2D_uint8) { 21, 22, 23, 24, 25}); test.AddOutput("Output", output_shape, output); +#if defined(OPENVINO_CONFIG_GPU_FP32) || defined(OPENVINO_CONFIG_GPU_FP16) + test.Run(OpTester::ExpectResult::kExpectSuccess, "", {kOpenVINOExecutionProvider}); +#else test.Run(); +#endif } TEST(PoolTest, MaxPool_10_Dilation_1d) {