Removed legacy include from plugin api (#1651)
This commit is contained in:
@@ -72,9 +72,7 @@ InferenceEngine::ExecutableNetworkInternal::Ptr Plugin::LoadExeNetworkImpl(const
|
||||
}
|
||||
}
|
||||
|
||||
auto clonedNetwork = cloneNet(network);
|
||||
ConstTransformer transformator(clonedNetwork.get());
|
||||
transformator.fullTrim();
|
||||
auto clonedNetwork = cloneNetwork(network);
|
||||
|
||||
return std::make_shared<ExecutableNetwork>(*clonedNetwork, cfg);
|
||||
}
|
||||
|
||||
@@ -32,6 +32,8 @@
|
||||
#include <transformations/convert_opset2_to_opset1/convert_opset2_to_opset1.hpp>
|
||||
#include <transformations/convert_opset3_to_opset2/convert_opset3_to_opset2.hpp>
|
||||
#include "convert_function_to_cnn_network.hpp"
|
||||
#include <graph_transformer.h>
|
||||
#include <ie_util_internal.hpp>
|
||||
|
||||
#undef min
|
||||
#undef max
|
||||
|
||||
@@ -5,6 +5,7 @@
|
||||
#include <memory>
|
||||
#include <ie_plugin.hpp>
|
||||
#include <cpp_interfaces/base/ie_plugin_base.hpp>
|
||||
#include <ie_util_internal.hpp>
|
||||
#include "gna_plugin_internal.hpp"
|
||||
|
||||
using namespace InferenceEngine;
|
||||
|
||||
@@ -16,7 +16,6 @@
|
||||
#include <unordered_set>
|
||||
|
||||
#include <ie_common.h>
|
||||
#include <cpp/ie_plugin_cpp.hpp>
|
||||
#include <cpp_interfaces/impl/ie_executable_network_thread_safe_default.hpp>
|
||||
|
||||
#include "hetero_infer_request.hpp"
|
||||
|
||||
@@ -15,6 +15,7 @@
|
||||
#include "hetero/hetero_plugin_config.hpp"
|
||||
#include <cpp_interfaces/base/ie_plugin_base.hpp>
|
||||
#include "hetero_executable_network.hpp"
|
||||
#include <ie_util_internal.hpp>
|
||||
|
||||
using namespace InferenceEngine;
|
||||
using namespace InferenceEngine::PluginConfigParams;
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
#include "description_buffer.hpp"
|
||||
#include "ie_icore.hpp"
|
||||
#include "cpp_interfaces/impl/ie_plugin_internal.hpp"
|
||||
#include "cpp/ie_plugin_cpp.hpp"
|
||||
#include "ie_util_internal.hpp"
|
||||
#include <memory>
|
||||
#include <string>
|
||||
#include <map>
|
||||
|
||||
@@ -15,6 +15,8 @@
|
||||
#include <ie_system_conf.h>
|
||||
#include <generic_ie.hpp>
|
||||
#include <nodes/list.hpp>
|
||||
#include <graph_transformer.h>
|
||||
#include <ie_util_internal.hpp>
|
||||
|
||||
#include "convert_function_to_cnn_network.hpp"
|
||||
#include <transformations/common_optimizations/common_optimizations.hpp>
|
||||
|
||||
@@ -18,6 +18,7 @@
|
||||
#include <multi-device/multi_device_config.hpp>
|
||||
#include <ie_plugin_config.hpp>
|
||||
#include "multi_device.hpp"
|
||||
#include <ie_util_internal.hpp>
|
||||
|
||||
namespace MultiDevicePlugin {
|
||||
using namespace InferenceEngine;
|
||||
|
||||
@@ -15,7 +15,6 @@
|
||||
#include <memory>
|
||||
#include <string>
|
||||
|
||||
#include <cpp/ie_plugin_cpp.hpp>
|
||||
#include <ie_plugin_dispatcher.hpp>
|
||||
#include <cpp_interfaces/impl/ie_plugin_internal.hpp>
|
||||
#include <cpp_interfaces/impl/ie_executable_network_thread_safe_default.hpp>
|
||||
|
||||
@@ -10,8 +10,6 @@
|
||||
#pragma once
|
||||
|
||||
#include <ie_plugin_config.hpp>
|
||||
#include <details/ie_cnn_network_tools.h>
|
||||
#include <ie_util_internal.hpp>
|
||||
|
||||
#include <details/caseless.hpp>
|
||||
#include <map>
|
||||
@@ -22,7 +20,6 @@
|
||||
#include "cpp_interfaces/base/ie_executable_network_base.hpp"
|
||||
#include "cpp_interfaces/impl/ie_executable_network_internal.hpp"
|
||||
#include "cpp_interfaces/interface/ie_iplugin_internal.hpp"
|
||||
#include "graph_transformer.h"
|
||||
|
||||
using namespace InferenceEngine;
|
||||
using namespace InferenceEngine::details;
|
||||
|
||||
@@ -20,6 +20,7 @@
|
||||
|
||||
#include "vpu/ngraph/transformations/dynamic_to_static_shape.hpp"
|
||||
#include "generic_ie.hpp"
|
||||
#include <ie_util_internal.hpp>
|
||||
|
||||
#include "myriad_plugin.h"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user