aboutsummaryrefslogtreecommitdiff
path: root/src/profiling/IProfilingGuidGenerator.hpp
diff options
context:
space:
mode:
authorJim Flynn <jim.flynn@arm.com>2020-01-22 15:18:49 +0000
committerTeresaARM <teresa.charlinreyes@arm.com>2020-01-23 15:55:02 +0000
commit6b1bf1a40bebf4cc108d39f8b8e0c29bdfc51ce1 (patch)
treebd3ed8cfa0f04ea619beb5e4380051f8c051a6e9 /src/profiling/IProfilingGuidGenerator.hpp
parent2210a5334bbd7d09f11db08a2a7a941a088a0f61 (diff)
downloadarmnn-6b1bf1a40bebf4cc108d39f8b8e0c29bdfc51ce1.tar.gz
IVGCVSW-4156 Remove backend dependency on ProfilingService.hppv19.11.1branches/armnn_19_11
Change-Id: I3b18ede85408bdfbc5147396e183e87bdabd3754 Signed-off-by: Jim Flynn <jim.flynn@arm.com>
Diffstat (limited to 'src/profiling/IProfilingGuidGenerator.hpp')
-rw-r--r--src/profiling/IProfilingGuidGenerator.hpp32
1 files changed, 0 insertions, 32 deletions
diff --git a/src/profiling/IProfilingGuidGenerator.hpp b/src/profiling/IProfilingGuidGenerator.hpp
deleted file mode 100644
index fb9f7401fb..0000000000
--- a/src/profiling/IProfilingGuidGenerator.hpp
+++ /dev/null
@@ -1,32 +0,0 @@
-//
-// Copyright © 2019 Arm Ltd. All rights reserved.
-// SPDX-License-Identifier: MIT
-//
-
-#pragma once
-
-#include <armnn/Types.hpp>
-
-#include <string>
-
-namespace armnn
-{
-
-namespace profiling
-{
-
-class IProfilingGuidGenerator
-{
-public:
- /// Return the next random Guid in the sequence
- virtual ProfilingDynamicGuid NextGuid() = 0;
-
- /// Create a ProfilingStaticGuid based on a hash of the string
- virtual ProfilingStaticGuid GenerateStaticId(const std::string& str) = 0;
-
- virtual ~IProfilingGuidGenerator() {}
-};
-
-} // namespace profiling
-
-} // namespace armnn