aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJan Eilers <jan.eilers@arm.com>2021-09-14 14:02:04 +0100
committerJan Eilers <jan.eilers@arm.com>2021-09-14 15:14:45 +0000
commitb89dfe7310748743160cbf41918efe48045257b1 (patch)
treeeef7707be3e37f6b252e4d994dd7ba20f73f29dd /tests
parentc840263cb524bec4a1911b81d6300a34fe05a599 (diff)
downloadarmnn-b89dfe7310748743160cbf41918efe48045257b1.tar.gz
IVGCVSW-6369 Fix ExecuteNetwork output failure
Signed-off-by: Jan Eilers <jan.eilers@arm.com> Change-Id: I01aa6ea4b21ad4504d6ae04850a2236588e5ddd3
Diffstat (limited to 'tests')
-rw-r--r--tests/NetworkExecutionUtils/NetworkExecutionUtils.cpp8
1 files changed, 0 insertions, 8 deletions
diff --git a/tests/NetworkExecutionUtils/NetworkExecutionUtils.cpp b/tests/NetworkExecutionUtils/NetworkExecutionUtils.cpp
index da3188c1e7..95f23c991d 100644
--- a/tests/NetworkExecutionUtils/NetworkExecutionUtils.cpp
+++ b/tests/NetworkExecutionUtils/NetworkExecutionUtils.cpp
@@ -202,18 +202,10 @@ void TensorPrinter::operator()(const std::vector<int>& values)
template<typename Container, typename Delegate>
void TensorPrinter::ForEachValue(const Container& c, Delegate delegate)
{
- if (m_PrintToConsole)
- {
- std::cout << m_OutputBinding << ": ";
- }
for (const auto& value : c)
{
delegate(value);
}
- if (m_PrintToConsole)
- {
- printf("\n");
- }
}
template<typename T>