From 45b82a58bccdd7a81164d2c890e565caa6669b6d Mon Sep 17 00:00:00 2001 From: Keith Davis Date: Tue, 4 Oct 2022 11:53:04 +0100 Subject: MLCE-545 INT8 TFLite model execution abnormal * Signed32 missing from CompareAndPrintOutput Signed-off-by: Keith Davis Change-Id: If3c93fb0d73c566ddcf439fceaa6d629029df18f --- tests/ExecuteNetwork/ArmNNExecutor.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests/ExecuteNetwork/ArmNNExecutor.cpp b/tests/ExecuteNetwork/ArmNNExecutor.cpp index 1e409e8d0a..b894db8049 100644 --- a/tests/ExecuteNetwork/ArmNNExecutor.cpp +++ b/tests/ExecuteNetwork/ArmNNExecutor.cpp @@ -695,6 +695,11 @@ void ArmNNExecutor::CompareAndPrintResult(std::vector otherOutput) result = ComputeRMSE(outputTensor.second.GetMemoryArea(), otherOutput[index++], size); break; } + case armnn::DataType::Signed32: + { + result = ComputeRMSE(outputTensor.second.GetMemoryArea(), otherOutput[index++], size); + break; + } case armnn::DataType::QSymmS16: { result = ComputeRMSE(outputTensor.second.GetMemoryArea(), otherOutput[index++], size); -- cgit v1.2.1