aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSadik Armagan <sadik.armagan@arm.com>2021-08-11 11:53:18 +0100
committerMatthew Sloyan <matthew.sloyan@arm.com>2021-08-11 13:15:23 +0100
commitf8a8add8a3f7c6fdb0fdddbe35a212418bfcfb19 (patch)
tree96c8e14e3e2824bbd813c41f9da817eb475279bd
parentceea6c555a0531bf204f35ecad5709dc1685d22c (diff)
downloadarmnn-f8a8add8a3f7c6fdb0fdddbe35a212418bfcfb19.tar.gz
IVGCVSW-6297 'Issue with Profiling output'
* Added missing comma to output. Signed-off-by: Sadik Armagan <sadik.armagan@arm.com> Change-Id: I10dde7666ea1e6ea7ebe5bd497d18fc838cb9812
-rw-r--r--src/armnn/JsonPrinter.cpp2
1 files changed, 1 insertions, 1 deletions
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<double>& measurementsVector)