aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CMakeLists.txt1
-rw-r--r--src/profiling/IPeriodicCounterCapture.hpp21
2 files changed, 22 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 8262970319..f8ff91efcd 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -434,6 +434,7 @@ list(APPEND armnn_sources
src/profiling/ProfilingConnectionFactory.cpp
src/profiling/ProfilingConnectionFactory.hpp
src/profiling/IBufferWrapper.hpp
+ src/profiling/IPeriodicCounterCapture.hpp
src/profiling/ISendCounterPacket.hpp
src/profiling/SendCounterPacket.hpp
src/profiling/SendCounterPacket.cpp
diff --git a/src/profiling/IPeriodicCounterCapture.hpp b/src/profiling/IPeriodicCounterCapture.hpp
new file mode 100644
index 0000000000..93df9d2541
--- /dev/null
+++ b/src/profiling/IPeriodicCounterCapture.hpp
@@ -0,0 +1,21 @@
+//
+// Copyright © 2019 Arm Ltd. All rights reserved.
+// SPDX-License-Identifier: MIT
+//
+
+#pragma once
+
+namespace armnn
+{
+
+namespace profiling
+{
+class IPeriodicCounterCapture
+{
+public:
+ virtual void Start() = 0;
+ virtual ~IPeriodicCounterCapture() {};
+};
+
+} // namespace profiling
+} // namespace armnn \ No newline at end of file