From a9119a3a3eec016f331a1a631c9a1a90d76d3612 Mon Sep 17 00:00:00 2001 From: Vladimir Paramuzov Date: Thu, 21 Oct 2021 14:09:12 +0300 Subject: [PATCH] [GPU] Added missing external queue handling in new Create request method (#8141) --- inference-engine/src/cldnn_engine/cldnn_executable_network.cpp | 3 +++ 1 file changed, 3 insertions(+) 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;