From 474a67231c5445f84186bf95c45a07be903b058a Mon Sep 17 00:00:00 2001 From: Alexander Alekhin Date: Tue, 17 Nov 2020 19:52:07 +0000 Subject: [PATCH] dnn(test): skip gather_multi_output test on Myriad --- modules/dnn/test/test_onnx_importer.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/modules/dnn/test/test_onnx_importer.cpp b/modules/dnn/test/test_onnx_importer.cpp index 14d2d28522..f0128945cc 100644 --- a/modules/dnn/test/test_onnx_importer.cpp +++ b/modules/dnn/test/test_onnx_importer.cpp @@ -707,6 +707,11 @@ TEST_P(Test_ONNX_layers, Conv1d_variable_weight_bias) TEST_P(Test_ONNX_layers, GatherMultiOutput) { +#if defined(INF_ENGINE_RELEASE) + if (target == DNN_TARGET_MYRIAD) + applyTestTag(CV_TEST_TAG_DNN_SKIP_IE_MYRIAD, CV_TEST_TAG_DNN_SKIP_IE); +#endif + testONNXModels("gather_multi_output"); }