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/Control.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'delegate/src/Control.hpp') diff --git a/delegate/src/Control.hpp b/delegate/src/Control.hpp index f20b9f0cc3..7e02de1bdf 100644 --- a/delegate/src/Control.hpp +++ b/delegate/src/Control.hpp @@ -121,7 +121,7 @@ TfLiteStatus VisitConcatenationOperator(DelegateData& delegateData, bool isSupported = false; auto validateFunc = [&](const armnn::TensorInfo& outputTensorInfo, bool& isSupported) { - FORWARD_LAYER_SUPPORT_FUNC(__func__, + FORWARD_LAYER_SUPPORT_FUNC("CONCATENATION", tfLiteContext, IsConcatSupported, delegateData.m_Backends, @@ -260,7 +260,7 @@ TfLiteStatus VisitMeanOperator(DelegateData& delegateData, bool isSupported = false; auto validateFunc = [&](const armnn::TensorInfo& outputTensorInfo, bool& isSupported) { - FORWARD_LAYER_SUPPORT_FUNC(__func__, + FORWARD_LAYER_SUPPORT_FUNC("MEAN", tfLiteContext, IsMeanSupported, delegateData.m_Backends, -- cgit v1.2.1