* Implemented inference in template plugin * Fixed tests * Removed thirdparty dependency * Simplified executor configuration * removed half * Fixed cmake * Fixed ngraph node check * device blob allocation * Fixed enum error
17 lines
398 B
C++
17 lines
398 B
C++
// Copyright (C) 2020 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.*",
|
|
".*registerPlugin.*",
|
|
".*IEClassGetAvailableDevices.*"
|
|
};
|
|
} |