ie_iinfer_request.hpp
Go to the documentation of this file.
1 // Copyright (C) 2018-2020 Intel Corporation
2 // SPDX-License-Identifier: Apache-2.0
3 //
4 
5 /**
6  * @brief a header file for IInferRequest interface
7  *
8  * @file ie_iinfer_request.hpp
9  */
10 
11 #pragma once
12 
13 #include <ie_blob.h>
14 
15 #include <details/ie_irelease.hpp>
16 #include <map>
17 #include <memory>
18 #include <string>
19 
20 #include "ie_common.h"
21 #include "ie_preprocess.hpp"
22 
23 namespace InferenceEngine {
24 
25 /**
26  * @brief This is an interface of asynchronous infer request
27  *
28  */
29 class IInferRequest : public details::IRelease {
30 public:
31  /**
32  * @enum WaitMode
33  * @brief Enumeration to hold wait mode for IInferRequest
34  */
35  enum WaitMode : int64_t {
36  /** Wait until inference result becomes available */
38  /** IInferRequest doesn't block or interrupt current thread and immediately returns inference status */
40  };
41  /**
42  * @brief A shared pointer to the IInferRequest object
43  */
44  using Ptr = std::shared_ptr<IInferRequest>;
45  /**
46  * @brief A smart pointer to the IInferRequest object
47  */
48  using WeakPtr = std::weak_ptr<IInferRequest>;
49 
50  /**
51  * @brief Sets input/output data to infer
52  *
53  * @note Memory allocation does not happen
54  * @param name Name of input or output blob.
55  * @param data Reference to input or output blob. The type of a blob must match the network input precision and
56  * size.
57  * @param resp Optional: pointer to an already allocated object to contain information in case of failure
58  * @return Status code of the operation: InferenceEngine::OK (0) for success
59  */
60  virtual StatusCode SetBlob(const char* name, const Blob::Ptr& data, ResponseDesc* resp) noexcept = 0;
61 
62  /**
63  * @brief Gets input/output data for inference
64  *
65  * @note Memory allocation does not happen
66  * @param name Name of input or output blob.
67  * @param data Reference to input or output blob. The type of Blob must match the network input precision and size.
68  * @param resp Optional: pointer to an already allocated object to contain information in case of failure
69  * @return Status code of the operation: InferenceEngine::OK (0) for success
70  */
71  virtual StatusCode GetBlob(const char* name, Blob::Ptr& data, ResponseDesc* resp) noexcept = 0;
72 
73  /**
74  * @brief Sets pre-process for input data
75  * @param name Name of input blob.
76  * @param data Reference to input or output blob. The type of Blob must match the network input precision and size.
77  * @param info Preprocess info for blob.
78  * @param resp Optional: pointer to an already allocated object to contain information in case of failure
79  * @return Status code of the operation: OK (0) for success
80  */
81  virtual StatusCode SetBlob(const char *name, const Blob::Ptr &data, const PreProcessInfo& info, ResponseDesc *resp) noexcept = 0;
82 
83  /**
84  * @brief Gets pre-process for input data
85  * @param name Name of input blob.
86  * @param info pointer to a pointer to PreProcessInfo structure
87  * @param resp Optional: pointer to an already allocated object to contain information in case of failure
88  * @return Status code of the operation: OK (0) for success
89  */
90  virtual StatusCode GetPreProcess(const char* name, const PreProcessInfo** info, ResponseDesc *resp) const noexcept = 0;
91  /**
92  * @brief Infers specified input(s) in synchronous mode
93  *
94  * @note blocks all methods of IInferRequest while request is ongoing (running or waiting in queue)
95  * @param resp Optional: pointer to an already allocated object to contain information in case of failure
96  * @return Status code of the operation: InferenceEngine::OK (0) for success
97  */
98  virtual StatusCode Infer(ResponseDesc* resp) noexcept = 0;
99 
100  /**
101  * @brief Queries performance measures per layer to get feedback of what is the most time consuming layer
102  *
103  * @note not all plugins provide meaningful data
104  * @param perfMap Map of layer names to profiling information for that layer
105  * @param resp Optional: pointer to an already allocated object to contain information in case of failure
106  * @return Status code of the operation: InferenceEngine::OK (0) for success
107  */
108  virtual StatusCode GetPerformanceCounts(std::map<std::string, InferenceEngineProfileInfo>& perfMap,
109  ResponseDesc* resp) const noexcept = 0;
110 
111  /**
112  * @brief Waits for the result to become available. Blocks until specified millis_timeout has elapsed or the result
113  * becomes available, whichever comes first.
114  *
115  * @param millis_timeout Maximum duration in milliseconds to block for
116  * @note There are special cases when millis_timeout is equal some value of the WaitMode enum:
117  * * STATUS_ONLY - immediately returns inference status (IInferRequest::RequestStatus). It does not block or
118  * interrupt current thread
119  * * RESULT_READY - waits until inference result becomes available
120  * @param resp Optional: a pointer to an already allocated object to contain extra information of a failure (if
121  * occurred)
122  * @return Enumeration of the resulted action: InferenceEngine::OK (0) for success
123  */
124  virtual InferenceEngine::StatusCode Wait(int64_t millis_timeout, ResponseDesc* resp) noexcept = 0;
125 
126  /**
127  * @brief Starts inference of specified input(s) in asynchronous mode
128  *
129  * @note It returns immediately. Inference starts also immediately
130  * @param resp Optional: a pointer to an already allocated object to contain extra information of a failure (if
131  * occurred)
132  * @return Enumeration of the resulted action: InferenceEngine::OK (0) for success
133  */
134  virtual StatusCode StartAsync(ResponseDesc* resp) noexcept = 0;
135 
136  /**
137  * @brief Completion callback definition as pointer to a function
138  *
139  * @param context Pointer to request for providing context inside callback
140  * @param code Completion result status: InferenceEngine::OK (0) for success
141  */
143 
144  /**
145  * @brief Sets a callback function that will be called on success or failure of asynchronous request
146  *
147  * @param callback A function to be called
148  * @return Enumeration of the resulted action: InferenceEngine::OK (0) for success
149  */
150  virtual StatusCode SetCompletionCallback(CompletionCallback callback) noexcept = 0;
151 
152  /**
153  * @brief Gets arbitrary data for the request and stores a pointer to a pointer to the obtained data
154  *
155  * @param data Pointer to a pointer to the gotten arbitrary data
156  * @param resp Optional: a pointer to an already allocated object to contain extra information of a failure (if
157  * occurred)
158  * @return Enumeration of the resulted action: InferenceEngine::OK (0) for success
159  */
160  virtual StatusCode GetUserData(void** data, ResponseDesc* resp) noexcept = 0;
161 
162  /**
163  * @brief Sets arbitrary data for the request
164  *
165  * @param data Pointer to a pointer to arbitrary data to set
166  * @param resp Optional: a pointer to an already allocated object to contain extra information of a failure (if
167  * occurred)
168  * @return Enumeration of the resulted action: InferenceEngine::OK (0) for success
169  */
170  virtual StatusCode SetUserData(void* data, ResponseDesc* resp) noexcept = 0;
171 
172  /**
173  * @brief Sets new batch size when dynamic batching is enabled in executable network that created this request.
174  *
175  * @param batch_size new batch size to be used by all the following inference calls for this request.
176  * @param resp Optional: a pointer to an already allocated object to contain extra information of a failure (if
177  * occurred)
178  * @return Enumeration of the resulted action: InferenceEngine::OK (0) for success
179  */
180  virtual InferenceEngine::StatusCode SetBatch(int batch_size, ResponseDesc* resp) noexcept = 0;
181 };
182 
183 } // namespace InferenceEngine
virtual StatusCode Infer(ResponseDesc *resp) noexcept=0
Infers specified input(s) in synchronous mode.
Inference Engine API.
Definition: ie_argmax_layer.hpp:15
std::string name
Layer name.
Definition: ie_layers.h:42
A header file for Blob and generic TBlob<>
virtual InferenceEngine::StatusCode SetBatch(int batch_size, ResponseDesc *resp) noexcept=0
Sets new batch size when dynamic batching is enabled in executable network that created this request...
This class stores pre-process information for the input.
Definition: ie_preprocess.hpp:55
virtual StatusCode GetPreProcess(const char *name, const PreProcessInfo **info, ResponseDesc *resp) const noexcept=0
Gets pre-process for input data.
Definition: ie_iinfer_request.hpp:39
This header file provides structures to store info about pre-processing of network inputs (scale...
Represents detailed information for an error.
Definition: ie_common.h:247
StatusCode
This enum contains codes for all possible return values of the interface functions.
Definition: ie_common.h:224
std::shared_ptr< Blob > Ptr
A smart pointer containing Blob object.
Definition: ie_blob.h:42
virtual StatusCode StartAsync(ResponseDesc *resp) noexcept=0
Starts inference of specified input(s) in asynchronous mode.
virtual InferenceEngine::StatusCode Wait(int64_t millis_timeout, ResponseDesc *resp) noexcept=0
Waits for the result to become available. Blocks until specified millis_timeout has elapsed or the re...
virtual StatusCode GetUserData(void **data, ResponseDesc *resp) noexcept=0
Gets arbitrary data for the request and stores a pointer to a pointer to the obtained data...
virtual StatusCode GetPerformanceCounts(std::map< std::string, InferenceEngineProfileInfo > &perfMap, ResponseDesc *resp) const noexcept=0
Queries performance measures per layer to get feedback of what is the most time consuming layer...
void(* CompletionCallback)(InferenceEngine::IInferRequest::Ptr context, InferenceEngine::StatusCode code)
Completion callback definition as pointer to a function.
Definition: ie_iinfer_request.hpp:142
Definition: ie_iinfer_request.hpp:37
virtual StatusCode GetBlob(const char *name, Blob::Ptr &data, ResponseDesc *resp) noexcept=0
Gets input/output data for inference.
virtual StatusCode SetCompletionCallback(CompletionCallback callback) noexcept=0
Sets a callback function that will be called on success or failure of asynchronous request...
A header file for the Inference Engine plugins destruction mechanism.
std::weak_ptr< IInferRequest > WeakPtr
A smart pointer to the IInferRequest object.
Definition: ie_iinfer_request.hpp:48
virtual StatusCode SetUserData(void *data, ResponseDesc *resp) noexcept=0
Sets arbitrary data for the request.
WaitMode
Enumeration to hold wait mode for IInferRequest.
Definition: ie_iinfer_request.hpp:35
This is a header file with common inference engine definitions.
virtual StatusCode SetBlob(const char *name, const Blob::Ptr &data, ResponseDesc *resp) noexcept=0
Sets input/output data to infer.
This is an interface of asynchronous infer request.
Definition: ie_iinfer_request.hpp:29
std::shared_ptr< IInferRequest > Ptr
A shared pointer to the IInferRequest object.
Definition: ie_iinfer_request.hpp:44