mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-31 23:27:43 +00:00
Disabled failed maxpool test on GPU (#3549)
This commit is contained in:
parent
7f46f347db
commit
6fe688c732
1 changed files with 4 additions and 0 deletions
|
|
@ -296,7 +296,11 @@ TEST(PoolTest, MaxPool2D_uint8) {
|
|||
21, 22, 23, 24, 25});
|
||||
|
||||
test.AddOutput<uint8_t>("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) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue