aboutsummaryrefslogtreecommitdiff
path: root/src/profiling/LabelsAndEventClasses.hpp
diff options
context:
space:
mode:
authorJim Flynn <jim.flynn@arm.com>2020-03-19 17:03:14 +0000
committerJim Flynn <jim.flynn@arm.com>2020-03-19 17:03:14 +0000
commit0e2bab81442ee6cc2b94e4f7881ed0c5c6af65e7 (patch)
treeb0af08b5a0b74149fca422151127ac6310385399 /src/profiling/LabelsAndEventClasses.hpp
parent8c3259fa007d43fcc5ea56fe6928526dbe79f3c0 (diff)
downloadarmnn-0e2bab81442ee6cc2b94e4f7881ed0c5c6af65e7.tar.gz
Creating gh-pages documentation for ArmNN
Signed-off-by: Jim Flynn <jim.flynn@arm.com>
Diffstat (limited to 'src/profiling/LabelsAndEventClasses.hpp')
-rw-r--r--src/profiling/LabelsAndEventClasses.hpp56
1 files changed, 0 insertions, 56 deletions
diff --git a/src/profiling/LabelsAndEventClasses.hpp b/src/profiling/LabelsAndEventClasses.hpp
deleted file mode 100644
index fa125490cc..0000000000
--- a/src/profiling/LabelsAndEventClasses.hpp
+++ /dev/null
@@ -1,56 +0,0 @@
-//
-// Copyright © 2019 Arm Ltd. All rights reserved.
-// SPDX-License-Identifier: MIT
-//
-
-#pragma once
-
-#include "ProfilingGuidGenerator.hpp"
-
-#include <armnn/Types.hpp>
-#include <DllExport.hpp>
-
-namespace armnn
-{
-
-namespace profiling
-{
-
-class LabelsAndEventClasses
-{
-public:
- // Labels (string value + GUID)
- ARMNN_DLLEXPORT static std::string NAME_LABEL;
- ARMNN_DLLEXPORT static std::string TYPE_LABEL;
- ARMNN_DLLEXPORT static std::string INDEX_LABEL;
- ARMNN_DLLEXPORT static std::string BACKENDID_LABEL;
- ARMNN_DLLEXPORT static ProfilingStaticGuid NAME_GUID;
- ARMNN_DLLEXPORT static ProfilingStaticGuid TYPE_GUID;
- ARMNN_DLLEXPORT static ProfilingStaticGuid INDEX_GUID;
- ARMNN_DLLEXPORT static ProfilingStaticGuid BACKENDID_GUID;
-
- // Common types
- ARMNN_DLLEXPORT static std::string LAYER;
- ARMNN_DLLEXPORT static std::string WORKLOAD;
- ARMNN_DLLEXPORT static std::string NETWORK;
- ARMNN_DLLEXPORT static std::string CONNECTION;
- ARMNN_DLLEXPORT static std::string INFERENCE;
- ARMNN_DLLEXPORT static std::string WORKLOAD_EXECUTION;
- ARMNN_DLLEXPORT static ProfilingStaticGuid LAYER_GUID;
- ARMNN_DLLEXPORT static ProfilingStaticGuid WORKLOAD_GUID;
- ARMNN_DLLEXPORT static ProfilingStaticGuid NETWORK_GUID;
- ARMNN_DLLEXPORT static ProfilingStaticGuid CONNECTION_GUID;
- ARMNN_DLLEXPORT static ProfilingStaticGuid INFERENCE_GUID;
- ARMNN_DLLEXPORT static ProfilingStaticGuid WORKLOAD_EXECUTION_GUID;
-
- // Event Class GUIDs
- ARMNN_DLLEXPORT static ProfilingStaticGuid ARMNN_PROFILING_SOL_EVENT_CLASS;
- ARMNN_DLLEXPORT static ProfilingStaticGuid ARMNN_PROFILING_EOL_EVENT_CLASS;
-
-private:
- static ProfilingGuidGenerator m_GuidGenerator;
-};
-
-} // namespace profiling
-
-} // namespace armnn