diff --git a/inference-engine/src/cldnn_engine/cldnn_executable_network.cpp b/inference-engine/src/cldnn_engine/cldnn_executable_network.cpp index 7a2157292f77a2..7e465f0f25782b 100644 --- a/inference-engine/src/cldnn_engine/cldnn_executable_network.cpp +++ b/inference-engine/src/cldnn_engine/cldnn_executable_network.cpp @@ -74,6 +74,9 @@ IInferRequestInternal::Ptr CLDNNExecNetwork::CreateInferRequestImpl(InputsDataMa } if (m_config.useProfiling) ptr->EnableProfiling(); + if (m_graphs.front()->use_external_queue()) { + ptr->enable_external_queue(); + } ptr->SetGraph(m_graphs.front()); return ptr;