From b89dfe7310748743160cbf41918efe48045257b1 Mon Sep 17 00:00:00 2001 From: Jan Eilers Date: Tue, 14 Sep 2021 14:02:04 +0100 Subject: IVGCVSW-6369 Fix ExecuteNetwork output failure Signed-off-by: Jan Eilers Change-Id: I01aa6ea4b21ad4504d6ae04850a2236588e5ddd3 --- tests/NetworkExecutionUtils/NetworkExecutionUtils.cpp | 8 -------- 1 file changed, 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& values) template 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 -- cgit v1.2.1