* Added PreprocessConversionTest tests * Disabled tests on GPU: CVS-51764 * Disabled some tests on VPU and TEMPLATE * Support for input layout conversions in TEMPLATE plugin
21 lines
550 B
C++
21 lines
550 B
C++
// Copyright (C) 2018-2021 Intel Corporation
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
|
|
#include <vector>
|
|
#include <string>
|
|
|
|
#include "functional_test_utils/skip_tests_config.hpp"
|
|
|
|
std::vector<std::string> disabledTestPatterns() {
|
|
return {
|
|
".*ExclusiveAsyncRequests.*",
|
|
".*reusableCPUStreamsExecutor.*",
|
|
R"(.*SplitLayerTest.*numSplits\=30.*)",
|
|
// CVS-44774
|
|
".*PreprocessTest.*",
|
|
// CVS-51758
|
|
".*PreprocessConversionTest.*oPRC=U8.*",
|
|
".*PreprocessConversionTest.*oLT=NHWC.*"
|
|
};
|
|
} |