26 #ifdef IMPLEMENT_INFERENCE_ENGINE_PLUGIN 27 #define INFERENCE_PLUGIN_API(type) extern "C" __declspec(dllexport) type 29 #define INFERENCE_PLUGIN_API(type) extern "C" type 32 #ifdef IMPLEMENT_INFERENCE_ENGINE_PLUGIN 33 #define INFERENCE_PLUGIN_API(type) extern "C" __attribute__((visibility("default"))) type 35 #define INFERENCE_PLUGIN_API(type) extern "C" type 38 #define INFERENCE_PLUGIN_API(TYPE) extern "C" TYPE 46 struct INFERENCE_ENGINE_API_CLASS(QueryNetworkResult) {
51 INFERENCE_ENGINE_DEPRECATED
109 virtual void GetVersion(
const Version *&versionInfo) noexcept = 0;
116 virtual void SetLogCallback(
IErrorListener &listener) noexcept = 0;
126 INFERENCE_ENGINE_DEPRECATED
152 const std::map<std::string, std::string> &config,
ResponseDesc *resp) noexcept = 0;
168 INFERENCE_ENGINE_DEPRECATED
183 INFERENCE_ENGINE_DEPRECATED
194 INFERENCE_ENGINE_DEPRECATED
195 virtual StatusCode GetPerformanceCounts(std::map<std::string, InferenceEngineProfileInfo> &perfMap,
204 virtual StatusCode AddExtension(InferenceEngine::IExtensionPtr extension,
213 virtual StatusCode SetConfig(
const std::map<std::string, std::string> &config,
ResponseDesc *resp) noexcept = 0;
222 INFERENCE_ENGINE_DEPRECATED
224 res.rc = InferenceEngine::NOT_IMPLEMENTED;
235 res.rc = InferenceEngine::NOT_IMPLEMENTED;
std::map< std::string, std::string > supportedLayersMap
A map of supported layers:
Definition: ie_plugin.hpp:59
A header file that provides versioning information for the inference engine shared library...
A header file for a plugin logging mechanism.
Definition: ie_argmax_layer.hpp:11
Represents version information that describes plugins and the inference engine runtime library...
Definition: ie_version.hpp:20
a header file for IExecutableNetwork interface
ResponseDesc resp
Response mssage.
Definition: ie_plugin.hpp:69
StatusCode
This enum contains codes for all possible return values of the interface functions.
Definition: ie_common.h:205
This is a header file for the ICNNNetwork class.
Represents detailed information for an error.
Definition: ie_common.h:228
StatusCode CreatePluginEngine(IInferencePlugin *&plugin, ResponseDesc *resp) noexcept
Creates the default instance of the interface (per plugin)
virtual void QueryNetwork(const ICNNNetwork &, QueryNetworkResult &res) const noexcept
Query plugin if it supports specified network.
Definition: ie_plugin.hpp:223
This class is a main plugin interface.
Definition: ie_plugin.hpp:103
This is the main interface to describe the NN topology.
Definition: ie_icnn_network.hpp:35
virtual void QueryNetwork(const ICNNNetwork &, const std::map< std::string, std::string > &, QueryNetworkResult &res) const noexcept
Query plugin if it supports specified network with specified configuration.
Definition: ie_plugin.hpp:233
std::set< std::string > supportedLayers
Set of supported layers by specific device.
Definition: ie_plugin.hpp:52
StatusCode rc
A status code.
Definition: ie_plugin.hpp:64
std::map< std::string, Blob::Ptr > BlobMap
This is a convenient type for working with a map containing pairs(string, pointer to a Blob instance)...
Definition: ie_blob.h:478
The macro defines a symbol import/export mechanism essential for Microsoft Windows(R) OS...
This class represents a universal container in the Inference Engine.
Definition: ie_blob.h:35
This is a header file for Inference Engine Extension Interface.
This class represents a custom error listener. Plugin consumers can provide it via InferenceEngine::S...
Definition: ie_error.hpp:16
header file for no_copy class
std::shared_ptr< IExecutableNetwork > Ptr
A smart pointer to the current IExecutableNetwork object.
Definition: ie_iexecutable_network.hpp:38
Responce structure encapsulating information about supported layer.
Definition: ie_plugin.hpp:46