ie_input_info.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 InputInfo class
7  *
8  * @file ie_input_info.hpp
9  */
10 #pragma once
11 
12 #include <map>
13 #include <memory>
14 #include <string>
15 
16 #include "ie_blob.h"
17 #include "ie_common.h"
18 #include "ie_data.h"
19 #include "ie_precision.hpp"
20 #include "ie_preprocess.hpp"
21 
22 namespace InferenceEngine {
23 
24 /**
25  * @brief This class contains information about each input of the network
26  */
27 class InputInfo {
28 public:
29  /** @brief A smart pointer to the InputInfo instance */
30  using Ptr = std::shared_ptr<InputInfo>;
31  /** @brief A smart pointer to the constant InputInfo instance */
32  using CPtr = std::shared_ptr<const InputInfo>;
33 
34  /**
35  * @brief Gets a precision of the input data provided by user
36  *
37  * By default it matches the layers precision, but there are exceptions of this rule
38  * For Q78 precision networks the input is expected in I16 by default
39  * For FP16 precision networks the input is expected in FP32 by default
40  * The default input precision might be changed preferred one using InputInfo::setPrecision()
41  * function.
42  * For example, for a Q78 precision network you can pass FP32 input data
43  * @return The precision used for input blob creation
44  */
46  if (!_inputData) {
47  THROW_IE_EXCEPTION << "Data is empty!";
48  }
49  return _inputData->getPrecision();
50  }
51 
52  /**
53  * @brief Changes the precision of the input data provided by the user.
54  *
55  * This function should be called before loading the network to the plugin
56  * @param p A new precision of the input data to set
57  */
59  if (!_inputData) {
60  THROW_IE_EXCEPTION << "Data is empty!";
61  }
62  _inputData->setPrecision(p);
63  }
64 
65  /**
66  * @brief Gets a layout of the input data provided by user
67  *
68  * @details By default it matches the layers precision and depends on number of its dimensions:
69  * C - for 1-dimensional,
70  * NC - for 2-dimensional,
71  * CHW - for 3-dimensional,
72  * NCHW - for 4-dimensional
73  * NCDHW - for 5-dimensional
74  * The default input layout might be changed preferred one using setLayout() function.
75  * @return The precision used for input blob creation
76  */
78  if (!_inputData) {
79  THROW_IE_EXCEPTION << "Data is empty!";
80  }
81  return _inputData->getLayout();
82  }
83 
84  /**
85  * @brief Changes the layout of the input data provided by the user.
86  *
87  * This function should be called before loading the network to the plugin
88  * @param l A new layout of the input data to set
89  */
90  void setLayout(Layout l) {
91  if (!_inputData) {
92  THROW_IE_EXCEPTION << "Data is empty!";
93  }
94  _inputData->setLayout(l);
95  }
96 
97  /**
98  * @brief Gets the name of the input
99  *
100  * @return A string - the name of the input
101  */
102  const std::string& name() const {
103  if (!_inputData) {
104  THROW_IE_EXCEPTION << "Data is empty!";
105  }
106  return _inputData->getName();
107  }
108 
109  /**
110  * @brief Gets the input data
111  *
112  * @return A smart pointer to the input data
113  */
115  return _inputData;
116  }
117 
118  /**
119  * @brief Initializes the pointer to the input data that stores the main input parameters like dims, etc
120  *
121  * This method initializes the precision with the information from the inputPtr if it was not set
122  * explicitly through InputInfo::setPrecision. If InputInfo::setPrecision is called, this method does not overwrite
123  * the precision.
124  * @param inputPtr Pointer to the input data to set
125  */
126  void setInputData(DataPtr inputPtr) {
127  _inputData = inputPtr;
128  }
129 
130  /**
131  * @brief Returns the tensor descriptor
132  * @return A const reference to a tensor descriptor
133  */
134  const TensorDesc& getTensorDesc() const {
135  if (!_inputData) {
136  THROW_IE_EXCEPTION << "Data is empty!";
137  }
138  return _inputData->getTensorDesc();
139  }
140 
141  /**
142  * @brief Gets pre-process info for the input
143  *
144  * @return A reference to the PreProcessInfo instance that contains pre-process info for this input
145  */
147  return _preProcessInfo;
148  }
149 
150 protected:
151  /**
152  * @brief Pre-process info for the input
153  */
155 
156  /**
157  * @brief A smart pointer to the input data
158  */
160 };
161 
162 /**
163  * @brief A collection that contains string as key, and InputInfo smart pointer as value
164  */
165 using InputsDataMap = std::map<std::string, InputInfo::Ptr>;
166 
167 /**
168  * @brief A collection that contains string as key, and const InputInfo smart pointer as value
169  */
170 using ConstInputsDataMap = std::map<std::string, InputInfo::CPtr>;
171 
172 } // namespace InferenceEngine
This class contains information about each input of the network.
Definition: ie_input_info.hpp:27
PreProcessInfo _preProcessInfo
Pre-process info for the input.
Definition: ie_input_info.hpp:154
Layout getLayout()
Gets a layout of the input data provided by user.
Definition: ie_input_info.hpp:77
std::shared_ptr< const InputInfo > CPtr
A smart pointer to the constant InputInfo instance.
Definition: ie_input_info.hpp:32
std::shared_ptr< InputInfo > Ptr
A smart pointer to the InputInfo instance.
Definition: ie_input_info.hpp:30
const TensorDesc & getTensorDesc() const
Returns the tensor descriptor.
Definition: ie_input_info.hpp:134
DataPtr getInputData() const
Gets the input data.
Definition: ie_input_info.hpp:114
PreProcessInfo & getPreProcess()
Gets pre-process info for the input.
Definition: ie_input_info.hpp:146
Precision getPrecision() const
Gets a precision of the input data provided by user.
Definition: ie_input_info.hpp:45
void setInputData(DataPtr inputPtr)
Initializes the pointer to the input data that stores the main input parameters like dims,...
Definition: ie_input_info.hpp:126
DataPtr _inputData
A smart pointer to the input data.
Definition: ie_input_info.hpp:159
void setPrecision(Precision p)
Changes the precision of the input data provided by the user.
Definition: ie_input_info.hpp:58
void setLayout(Layout l)
Changes the layout of the input data provided by the user.
Definition: ie_input_info.hpp:90
const std::string & name() const
Gets the name of the input.
Definition: ie_input_info.hpp:102
This class stores pre-process information for the input.
Definition: ie_preprocess.hpp:55
This class holds precision value and provides precision related operations.
Definition: ie_precision.hpp:23
This class defines Tensor description.
Definition: ie_layouts.h:158
A header file for Blob and generic TBlob<>
This is a header file with common inference engine definitions.
This header file defines the main Data representation node.
#define THROW_IE_EXCEPTION
A macro used to throw general exception with a description.
Definition: ie_exception.hpp:25
A header file that provides class for describing precision of data.
This header file provides structures to store info about pre-processing of network inputs (scale,...
Inference Engine C++ API.
Definition: cldnn_config.hpp:15
std::map< std::string, InputInfo::Ptr > InputsDataMap
A collection that contains string as key, and InputInfo smart pointer as value.
Definition: ie_input_info.hpp:165
Layout
Layouts that the inference engine supports.
Definition: ie_common.h:63
std::map< std::string, InputInfo::CPtr > ConstInputsDataMap
A collection that contains string as key, and const InputInfo smart pointer as value.
Definition: ie_input_info.hpp:170
std::shared_ptr< Data > DataPtr
Smart pointer to Data.
Definition: ie_common.h:37