Commit 492a072e authored by Alexander Alekhin's avatar Alexander Alekhin

Merge pull request #13376 from dkurt:hotfix_dnn_ie

parents 6fbf6f8b 3868cb44
...@@ -418,6 +418,8 @@ void InfEngineBackendNet::init(int targetId) ...@@ -418,6 +418,8 @@ void InfEngineBackendNet::init(int targetId)
InferenceEngine::OutputsDataMap unconnectedOuts; InferenceEngine::OutputsDataMap unconnectedOuts;
for (const auto& l : layers) for (const auto& l : layers)
{ {
if (l->type == "Input")
continue;
// Add all outputs. // Add all outputs.
for (const InferenceEngine::DataPtr& out : l->outData) for (const InferenceEngine::DataPtr& out : l->outData)
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment