aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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>