aboutsummaryrefslogtreecommitdiff
path: root/src/profiling/ISendCounterPacket.hpp
diff options
context:
space:
mode:
authorJim Flynn <jim.flynn@arm.com>2022-03-20 21:52:17 +0000
committerJim Flynn <jim.flynn@arm.com>2022-03-23 20:32:03 +0000
commit277618302d0f131eac0b6ac2015dd3eb09aa6ff9 (patch)
treee468fa1362640484b508812596fb5c1b62186882 /src/profiling/ISendCounterPacket.hpp
parenta3bc0b4976395226c0fa0898b26098c4534edbdb (diff)
downloadarmnn-277618302d0f131eac0b6ac2015dd3eb09aa6ff9.tar.gz
IVGCVSW-6706 Move headers to profiling/client/include
!android-nn-driver:7337 Change-Id: Ide401623829cc99fb9b51e9bbce3482ce706a8dd Signed-off-by: Jim Flynn <jim.flynn@arm.com>
Diffstat (limited to 'src/profiling/ISendCounterPacket.hpp')
-rw-r--r--src/profiling/ISendCounterPacket.hpp40
1 files changed, 0 insertions, 40 deletions
diff --git a/src/profiling/ISendCounterPacket.hpp b/src/profiling/ISendCounterPacket.hpp
deleted file mode 100644
index 522dc7c7cb..0000000000
--- a/src/profiling/ISendCounterPacket.hpp
+++ /dev/null
@@ -1,40 +0,0 @@
-//
-// Copyright © 2017 Arm Ltd. All rights reserved.
-// SPDX-License-Identifier: MIT
-//
-
-#pragma once
-
-#include <armnn/backends/profiling/IBackendProfiling.hpp>
-#include <common/include/ICounterDirectory.hpp>
-
-namespace arm
-{
-
-namespace pipe
-{
-
-class ISendCounterPacket
-{
-public:
- using IndexValuePairsVector = std::vector<CounterValue>;
-
- virtual ~ISendCounterPacket() {}
-
- /// Create and write a StreamMetaDataPacket in the buffer
- virtual void SendStreamMetaDataPacket() = 0;
-
- /// Create and write a CounterDirectoryPacket from the parameters to the buffer.
- virtual void SendCounterDirectoryPacket(const ICounterDirectory& counterDirectory) = 0;
-
- /// Create and write a PeriodicCounterCapturePacket from the parameters to the buffer.
- virtual void SendPeriodicCounterCapturePacket(uint64_t timestamp, const IndexValuePairsVector& values) = 0;
-
- /// Create and write a PeriodicCounterSelectionPacket from the parameters to the buffer.
- virtual void SendPeriodicCounterSelectionPacket(uint32_t capturePeriod,
- const std::vector<uint16_t>& selectedCounterIds) = 0;
-};
-
-} // namespace pipe
-
-} // namespace arm