aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Jalkemo <adam.jalkemo@arm.com>2022-10-13 09:04:54 +0200
committerTeresa Charlin <teresa.charlinreyes@arm.com>2022-10-13 12:47:41 +0100
commit8f393638cebc4597d59b41a4c2573f5a28b5f170 (patch)
treeb2d4d97490561f5a09c8f18d30fafb762384177c
parent1e8187aaf9e62044cdfa960b98fc565f0bc1a1b2 (diff)
downloadarmnn-8f393638cebc4597d59b41a4c2573f5a28b5f170.tar.gz
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
-rw-r--r--tests/ExecuteNetwork/ArmNNExecutor.cpp1
1 files changed, 1 insertions, 0 deletions
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;
}
}