aboutsummaryrefslogtreecommitdiff
path: root/src/profiling/ISendCounterPacket.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/ISendCounterPacket.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/ISendCounterPacket.hpp')
-rw-r--r--src/profiling/ISendCounterPacket.hpp41
1 files changed, 0 insertions, 41 deletions
diff --git a/src/profiling/ISendCounterPacket.hpp b/src/profiling/ISendCounterPacket.hpp
deleted file mode 100644
index d87a042d76..0000000000
--- a/src/profiling/ISendCounterPacket.hpp
+++ /dev/null
@@ -1,41 +0,0 @@
-//
-// Copyright © 2017 Arm Ltd. All rights reserved.
-// SPDX-License-Identifier: MIT
-//
-
-#pragma once
-
-#include <armnn/backends/profiling/IBackendProfiling.hpp>
-#include "ICounterDirectory.hpp"
-
-namespace armnn
-{
-
-namespace profiling
-{
-
-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 profiling
-
-} // namespace armnn
-