From bfa767ca56f9776e7dd3eecb4025cfeed87f9936 Mon Sep 17 00:00:00 2001 From: Sadik Armagan Date: Wed, 9 Feb 2022 14:58:03 +0000 Subject: MLCE-754 'Improve operator support error/warning from Arm NN Delegate' * Improved error reporting on armnn_delegate Signed-off-by: Sadik Armagan Change-Id: I1bd131fb56d64b32b1fafad0465256178720226c --- delegate/src/BatchSpace.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'delegate/src/BatchSpace.hpp') diff --git a/delegate/src/BatchSpace.hpp b/delegate/src/BatchSpace.hpp index 318806feef..5f8d5cc317 100644 --- a/delegate/src/BatchSpace.hpp +++ b/delegate/src/BatchSpace.hpp @@ -74,7 +74,7 @@ TfLiteStatus VisitBatchToSpaceNdOperator(DelegateData& delegateData, bool isSupported = false; auto validateFunc = [&](const armnn::TensorInfo& outputTensorInfo, bool& isSupported) { - FORWARD_LAYER_SUPPORT_FUNC(__func__, + FORWARD_LAYER_SUPPORT_FUNC("BATCH_TO_SPACE_ND", tfLiteContext, IsBatchToSpaceNdSupported, delegateData.m_Backends, @@ -165,7 +165,7 @@ TfLiteStatus VisitSpaceToBatchNdOperator(DelegateData& delegateData, bool isSupported = false; auto validateFunc = [&](const armnn::TensorInfo& outputTensorInfo, bool& isSupported) { - FORWARD_LAYER_SUPPORT_FUNC(__func__, + FORWARD_LAYER_SUPPORT_FUNC("SPACE_TO_BATCH_ND", tfLiteContext, IsSpaceToBatchNdSupported, delegateData.m_Backends, -- cgit v1.2.1