File tree Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -126,6 +126,12 @@ void InfEngineBackendNet::getInputsInfo(InferenceEngine::InputsDataMap &inputs_)
126
126
inputs_ = inputs;
127
127
}
128
128
129
+ // Returns input references that aren't connected to internal outputs.
130
+ void InfEngineBackendNet::getInputsInfo (InferenceEngine::InputsDataMap &inputs_) const noexcept
131
+ {
132
+ inputs_ = inputs;
133
+ }
134
+
129
135
InferenceEngine::InputInfo::Ptr InfEngineBackendNet::getInput (const std::string &inputName) noexcept
130
136
{
131
137
getInputsInfo (inputs);
Original file line number Diff line number Diff line change @@ -29,6 +29,8 @@ class InfEngineBackendNet : public InferenceEngine::ICNNNetwork
29
29
30
30
virtual void getInputsInfo (InferenceEngine::InputsDataMap &inputs) noexcept ;
31
31
32
+ virtual void getInputsInfo (InferenceEngine::InputsDataMap &inputs) const noexcept ;
33
+
32
34
virtual InferenceEngine::InputInfo::Ptr getInput (const std::string &inputName) noexcept ;
33
35
34
36
virtual void getName (char *pName, size_t len) noexcept ;
You can’t perform that action at this time.
0 commit comments