From 3201eea0565ce2bb0418d1936fec71bdeb14c084 Mon Sep 17 00:00:00 2001 From: Keith Davis Date: Thu, 24 Oct 2019 17:30:41 +0100 Subject: IVGCVSW-3444 File Only Profiling Connection * Add FileOnlyProfilingConnection Decorator * Fix bug where Conn Ack not automatically sent back * Modify GatordMock to use the Counter Directory class. * Promote DirectoryCaptureCommandHandler from GatordMock into ArmNN. * Remove MockUtils as it's contents were moved or deleted. * Rewrite GatordMockTests to use Counter Directory class. * Flush streams in ProfilingConnectionDumpToFileDecorator::Close. Signed-off-by: Keith Davis Signed-off-by: Colm Donelan Change-Id: I77b2aedece24150dd31691b577f3b5d81b2e226f --- tests/profiling/gatordmock/MockUtils.cpp | 57 -------------------------------- 1 file changed, 57 deletions(-) delete mode 100644 tests/profiling/gatordmock/MockUtils.cpp (limited to 'tests/profiling/gatordmock/MockUtils.cpp') diff --git a/tests/profiling/gatordmock/MockUtils.cpp b/tests/profiling/gatordmock/MockUtils.cpp deleted file mode 100644 index bdbffc9253..0000000000 --- a/tests/profiling/gatordmock/MockUtils.cpp +++ /dev/null @@ -1,57 +0,0 @@ -// -// Copyright © 2019 Arm Ltd. All rights reserved. -// SPDX-License-Identifier: MIT -// - -#include "MockUtils.hpp" - -namespace armnn -{ - -namespace gatordmock -{ - -std::string CentreAlignFormatting(const std::string& stringToPass, const int spacingWidth) -{ - std::stringstream outputStream, centrePadding; - int padding = spacingWidth - static_cast(stringToPass.size()); - - for (int i = 0; i < padding / 2; ++i) - { - centrePadding << " "; - } - - outputStream << centrePadding.str() << stringToPass << centrePadding.str(); - - if (padding > 0 && padding %2 != 0) - { - outputStream << " "; - } - - return outputStream.str(); -} - -std::string GetStringNameFromBuffer(const unsigned char* const data, uint32_t offset) -{ - std::string deviceName; - u_char nextChar = profiling::ReadUint8(data, offset); - - while (IsValidChar(nextChar)) - { - deviceName += static_cast(nextChar); - offset ++; - nextChar = profiling::ReadUint8(data, offset); - } - - return deviceName; -} - -bool IsValidChar(unsigned char c) -{ - // Check that the given character has ASCII 7-bit encoding, alpha-numeric, whitespace, and underscore only - return c < 128 && (std::isalnum(c) || c == '_' || c == ' '); -} - -} // gatordmock - -} // armnn -- cgit v1.2.1