aboutsummaryrefslogtreecommitdiff
path: root/include/armnn/profiling
diff options
context:
space:
mode:
Diffstat (limited to 'include/armnn/profiling')
-rw-r--r--include/armnn/profiling/IProfilingGuidGenerator.hpp32
1 files changed, 0 insertions, 32 deletions
diff --git a/include/armnn/profiling/IProfilingGuidGenerator.hpp b/include/armnn/profiling/IProfilingGuidGenerator.hpp
deleted file mode 100644
index 95a210604e..0000000000
--- a/include/armnn/profiling/IProfilingGuidGenerator.hpp
+++ /dev/null
@@ -1,32 +0,0 @@
-//
-// Copyright © 2019 Arm Ltd. All rights reserved.
-// SPDX-License-Identifier: MIT
-//
-
-#pragma once
-
-#include <common/include/ProfilingGuid.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