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/Quantization.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'delegate/src/Quantization.hpp') diff --git a/delegate/src/Quantization.hpp b/delegate/src/Quantization.hpp index 3c274c6ff5..26a933953a 100644 --- a/delegate/src/Quantization.hpp +++ b/delegate/src/Quantization.hpp @@ -52,7 +52,7 @@ TfLiteStatus VisitDequantizeOperator(DelegateData& delegateData, bool isSupported = false; auto validateFunc = [&](const armnn::TensorInfo& outputTensorInfo, bool& isSupported) { - FORWARD_LAYER_SUPPORT_FUNC(__func__, + FORWARD_LAYER_SUPPORT_FUNC("DEQUANTIZE", tfLiteContext, IsDequantizeSupported, delegateData.m_Backends, @@ -131,7 +131,7 @@ TfLiteStatus VisitQuantizeOperator(DelegateData& delegateData, bool isSupported = false; auto validateFunc = [&](const armnn::TensorInfo& outputTensorInfo, bool& isSupported) { - FORWARD_LAYER_SUPPORT_FUNC(__func__, + FORWARD_LAYER_SUPPORT_FUNC("QUANTIZE", tfLiteContext, IsQuantizeSupported, delegateData.m_Backends, -- cgit v1.2.1