From a280650509c4fbaa2508cdbc42e31f5a1805bd2a Mon Sep 17 00:00:00 2001 From: Mike Kelly Date: Thu, 3 Aug 2023 10:42:11 +0100 Subject: MLCE-1092 Added layerNames to opaque delegate * All layers added through the opaque delegate will have a name that includes the nodeIndex from the tflite model. * Added utilities to OpaqueDelegateUtils to get the names for the layers. Signed-off-by: Mike Kelly Change-Id: Iadcc21646d0b6fcc2c524d6239211ad3af6b6577 --- delegate/opaque/src/Split.hpp | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'delegate/opaque/src/Split.hpp') diff --git a/delegate/opaque/src/Split.hpp b/delegate/opaque/src/Split.hpp index d3d00e4d63..aec0fb674a 100644 --- a/delegate/opaque/src/Split.hpp +++ b/delegate/opaque/src/Split.hpp @@ -157,7 +157,8 @@ TfLiteStatus VisitSplitOperator(DelegateData& delegateData, return isSupported ? kTfLiteOk : kTfLiteError; } - armnn::IConnectableLayer* layer = delegateData.m_Network->AddSplitterLayer(splitDescriptor); + auto layerName = GetName(armnn::LayerType::Splitter, nodeIndex); + armnn::IConnectableLayer* layer = delegateData.m_Network->AddSplitterLayer(splitDescriptor, layerName.c_str()); layer->SetBackendId(setBackend); ARMNN_ASSERT(layer != nullptr); @@ -391,7 +392,8 @@ TfLiteStatus VisitSplitVOperator(DelegateData& delegateData, return isSupported ? kTfLiteOk : kTfLiteError; } - armnn::IConnectableLayer* layer = delegateData.m_Network->AddSplitterLayer(splitDescriptor); + auto layerName = GetName(armnn::LayerType::Splitter, nodeIndex); + armnn::IConnectableLayer* layer = delegateData.m_Network->AddSplitterLayer(splitDescriptor, layerName.c_str()); layer->SetBackendId(setBackend); ARMNN_ASSERT(layer != nullptr); @@ -401,7 +403,7 @@ TfLiteStatus VisitSplitVOperator(DelegateData& delegateData, } // try to connect the Constant Inputs if there are any - if(ProcessInputs(layer,delegateData, tfLiteContext, tfLiteNode) != kTfLiteOk ) + if (ProcessInputs(layer, delegateData, tfLiteContext, tfLiteNode, nodeIndex) != kTfLiteOk) { return kTfLiteError; } -- cgit v1.2.1