aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorTeresa Charlin <teresa.charlinreyes@arm.com>2022-11-11 11:14:50 +0000
committerTeresaARM <teresa.charlinreyes@arm.com>2022-11-11 13:16:32 +0000
commitf53b28f27bfe9cb0c92aa3103622f0fbd3d279c5 (patch)
tree0f4042f53d9f37453bee6f13bcde85c30d7942a7 /tests
parentf3543e88e5d73923037b5cab27e12519a6bbdff3 (diff)
downloadarmnn-f53b28f27bfe9cb0c92aa3103622f0fbd3d279c5.tar.gz
IVGCVSW-7356 Bug Fix for Execute Network Delegate when input names not given
Signed-off-by: Teresa Charlin <teresa.charlinreyes@arm.com> Change-Id: I2fd0f6aac6ffff695b17df7455f252f6013c0d43
Diffstat (limited to 'tests')
-rw-r--r--tests/ExecuteNetwork/TfliteExecutor.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/ExecuteNetwork/TfliteExecutor.cpp b/tests/ExecuteNetwork/TfliteExecutor.cpp
index d750fcccc7..d501062643 100644
--- a/tests/ExecuteNetwork/TfliteExecutor.cpp
+++ b/tests/ExecuteNetwork/TfliteExecutor.cpp
@@ -39,7 +39,7 @@ TfLiteExecutor::TfLiteExecutor(const ExecuteNetworkParams& params) : m_Params(pa
std::cout << "Running on TfLite without ArmNN delegate\n";
}
- const size_t numInputs = m_Params.m_InputNames.size();
+ const size_t numInputs = m_TfLiteInterpreter->inputs().size();
for(unsigned int inputIndex = 0; inputIndex < numInputs; ++inputIndex)
{