From f8a8add8a3f7c6fdb0fdddbe35a212418bfcfb19 Mon Sep 17 00:00:00 2001 From: Sadik Armagan Date: Wed, 11 Aug 2021 11:53:18 +0100 Subject: IVGCVSW-6297 'Issue with Profiling output' * Added missing comma to output. Signed-off-by: Sadik Armagan Change-Id: I10dde7666ea1e6ea7ebe5bd497d18fc838cb9812 --- src/armnn/JsonPrinter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/armnn/JsonPrinter.cpp b/src/armnn/JsonPrinter.cpp index b5612ebe02..94ff7c0610 100644 --- a/src/armnn/JsonPrinter.cpp +++ b/src/armnn/JsonPrinter.cpp @@ -127,7 +127,7 @@ void JsonPrinter::PrintType(armnn::JsonObjectType type) void JsonPrinter::PrintGuid(armnn::profiling::ProfilingGuid guid) { PrintTabs(); - m_OutputStream << std::quoted("GUID") << ": " << std::quoted(std::to_string(guid)) << std::endl; + m_OutputStream << std::quoted("GUID") << ": " << std::quoted(std::to_string(guid)) << "," << std::endl; } void JsonPrinter::PrintMeasurementsList(const std::vector& measurementsVector) -- cgit v1.2.1