From 8f393638cebc4597d59b41a4c2573f5a28b5f170 Mon Sep 17 00:00:00 2001 From: Adam Jalkemo Date: Thu, 13 Oct 2022 09:04:54 +0200 Subject: IVGCVSW-7288 ExecuteNetwork fix for multiple outputs * When a model with multiple outputs was used and output to file, e.g. with "-w ./boxes,./classes,./scores,./detection", the results where not saved in the correct files. * Applies only to the ArmNNExecutor. Change-Id: I2899322622a4c3fd1d0ddc75b100b81669417660 --- tests/ExecuteNetwork/ArmNNExecutor.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/ExecuteNetwork/ArmNNExecutor.cpp b/tests/ExecuteNetwork/ArmNNExecutor.cpp index aa71c408d7..4d63b4890e 100644 --- a/tests/ExecuteNetwork/ArmNNExecutor.cpp +++ b/tests/ExecuteNetwork/ArmNNExecutor.cpp @@ -674,6 +674,7 @@ void ArmNNExecutor::PrintOutputTensors(const armnn::OutputTensors* outputTensors } } std::cout << "\n"; + ++outputIndex; } } -- cgit v1.2.1