Merge pull request #25603 from asmorkalov:as/skip_vulkan_concat

Skip Test_Caffe_layers.Concat with Vulkan due to sporadic failures
pull/25506/head
Alexander Smorkalov 6 months ago committed by GitHub
commit 8aa129dce1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 5
      modules/dnn/test/test_layers.cpp

@ -307,6 +307,11 @@ TEST_P(Test_Caffe_layers, Dropout)
TEST_P(Test_Caffe_layers, Concat)
{
if (cvtest::skipUnstableTests && (backend == DNN_BACKEND_VKCOM))
{
throw SkipTestException("Test_Caffe_layers.Concat test produces unstable result with Vulkan");
}
#if defined(INF_ENGINE_RELEASE)
#if INF_ENGINE_VER_MAJOR_GE(2019010000) && INF_ENGINE_VER_MAJOR_LT(2019020000)
if (backend == DNN_BACKEND_INFERENCE_ENGINE_NN_BUILDER_2019 && target == DNN_TARGET_MYRIAD)

Loading…
Cancel
Save