19 #include "cpp/ie_memory_state.hpp" 39 : actual(actual), plg(plg) {}
66 this->actual.swap(newActual);
74 IInferRequest::Ptr req;
76 if (req.get() ==
nullptr)
THROW_IE_EXCEPTION <<
"Internal error: pointer to infer request is null";
86 IInferRequest::Ptr req;
88 return std::make_shared<InferRequest>(req, plg);
96 void Export(
const std::string &modelFileName) {
97 CALL_STATUS_FNC(
Export, modelFileName);
105 void GetMappedTopology(std::map<std::string, std::vector<PrimitiveInfo::Ptr>> &deployedTopology) {
122 ICNNNetwork::Ptr ptr =
nullptr;
131 IMemoryState::Ptr pState =
nullptr;
133 std::vector<MemoryState> controller;
134 for (
size_t idx = 0; res == OK; ++idx) {
136 res = actual->QueryState(pState, idx, &resp);
137 if (res != OK && res != OUT_OF_BOUNDS) {
140 if (res != OUT_OF_BOUNDS) {
153 void SetConfig(
const std::map<std::string, Parameter> &config) {
165 CALL_STATUS_FNC(
GetConfig, name, configValue);
180 CALL_STATUS_FNC(
GetMetric, name, metricValue);
184 using Ptr = std::shared_ptr<ExecutableNetwork>;
void SetConfig(const std::map< std::string, Parameter > &config)
Sets configuration for current executable network.
Definition: ie_executable_network.hpp:153
#define THROW_IE_EXCEPTION
A macro used to throw the exception with a notable description.
Definition: ie_exception.hpp:22
InferenceEngine::details::SOPointer< IInferencePlugin > InferenceEnginePluginPtr
A C++ helper to work with objects created by the plugin. Implements different interfaces.
Definition: ie_plugin_ptr.hpp:52
Parameter GetConfig(const std::string &name) const
Gets configuration dedicated to plugin behaviour.
Definition: ie_executable_network.hpp:163
A header file that provides wrapper for ICNNNetwork object.
std::vector< MemoryState > QueryState()
see original function InferenceEngine::IExecutableNetwork::QueryState
Definition: ie_executable_network.hpp:130
Definition: ie_argmax_layer.hpp:11
a header file for IExecutableNetwork interface
A header file that provides macros to handle no exception methods.
A header file contains a wrapper class for handling plugin instantiation and releasing resources...
InferRequest CreateInferRequest()
Wraps original method IExecutableNetwork::CreateInferRequest.
Definition: ie_executable_network.hpp:73
ConstOutputsDataMap GetOutputsInfo() const
Wraps original method IExecutableNetwork::getOutputsInfo.
Definition: ie_executable_network.hpp:45
This class is a wrapper of IInferRequest to provide setters/getters of input/output which operates wi...
Definition: ie_infer_request.hpp:59
std::map< std::string, CDataPtr > ConstOutputsDataMap
A collection that contains string as key, and const Data smart pointer as value.
Definition: ie_iexecutable_network.hpp:28
Represents detailed information for an error.
Definition: ie_common.h:228
wrapper over IExecutableNetwork
Definition: ie_executable_network.hpp:28
void GetMappedTopology(std::map< std::string, std::vector< PrimitiveInfo::Ptr >> &deployedTopology)
Gets the mapping of IR layer names to implemented kernels.
Definition: ie_executable_network.hpp:105
CNNNetwork GetExecGraphInfo()
Get executable graph information from a plugin represented as CNNNetwork.
Definition: ie_executable_network.hpp:121
This class contains all the information about the Neural Network and the related binary information...
Definition: ie_cnn_network.h:29
c++ exception based error reporting wrapper of API class IMemoryState
Definition: ie_memory_state.hpp:13
void Export(const std::string &modelFileName)
Exports the current executable network so it can be used later in the Import() main API...
Definition: ie_executable_network.hpp:96
ConstInputsDataMap GetInputsInfo() const
Wraps original method IExecutableNetwork::getInputsInfo.
Definition: ie_executable_network.hpp:55
This class represents an object to work with different parameters.
Definition: ie_parameter.hpp:27
Parameter GetMetric(const std::string &name) const
Gets general runtime metric for dedicated hardware.
Definition: ie_executable_network.hpp:178
char msg[256]
A character buffer that holds the detailed information for an error.
Definition: ie_common.h:232
std::shared_ptr< IExecutableNetwork > Ptr
A smart pointer to the current IExecutableNetwork object.
Definition: ie_iexecutable_network.hpp:38
A header file that provides wrapper classes for infer requests and callbacks.
void reset(IExecutableNetwork::Ptr newActual)
reset owned object to new pointer, essential for cases when simultaneously loaded networks not expect...
Definition: ie_executable_network.hpp:65
InferRequest::Ptr CreateInferRequestPtr()
Wraps original method IExecutableNetwork::CreateInferRequestPtr.
Definition: ie_executable_network.hpp:85