From 6940dd720ebb6b3d1df8ca203ab696daefe58189 Mon Sep 17 00:00:00 2001 From: Jim Flynn Date: Fri, 20 Mar 2020 12:25:56 +0000 Subject: renamed Documentation folder 20.02 and added .nojekyll file Signed-off-by: Jim Flynn --- ...ter_directory_command_handler_8hpp_source.xhtml | 128 +++++++++++++++++++++ 1 file changed, 128 insertions(+) create mode 100644 20.02/_request_counter_directory_command_handler_8hpp_source.xhtml (limited to '20.02/_request_counter_directory_command_handler_8hpp_source.xhtml') diff --git a/20.02/_request_counter_directory_command_handler_8hpp_source.xhtml b/20.02/_request_counter_directory_command_handler_8hpp_source.xhtml new file mode 100644 index 0000000000..f105db6020 --- /dev/null +++ b/20.02/_request_counter_directory_command_handler_8hpp_source.xhtml @@ -0,0 +1,128 @@ + + + + + + + + + + + + + +ArmNN: src/profiling/RequestCounterDirectoryCommandHandler.hpp Source File + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  20.02 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+
+
RequestCounterDirectoryCommandHandler.hpp
+
+
+Go to the documentation of this file.
1 //
2 // Copyright © 2019 Arm Ltd. All rights reserved.
3 // SPDX-License-Identifier: MIT
4 //
5 
6 #pragma once
7 
9 #include "ISendCounterPacket.hpp"
11 #include "Packet.hpp"
13 
14 namespace armnn
15 {
16 
17 namespace profiling
18 {
19 
21 {
22 
23 public:
25  uint32_t packetId,
26  uint32_t version,
27  ICounterDirectory& counterDirectory,
28  ISendCounterPacket& sendCounterPacket,
29  ISendTimelinePacket& sendTimelinePacket,
30  ProfilingStateMachine& profilingStateMachine)
31  : CommandHandlerFunctor(familyId, packetId, version)
32  , m_CounterDirectory(counterDirectory)
33  , m_SendCounterPacket(sendCounterPacket)
34  , m_SendTimelinePacket(sendTimelinePacket)
35  , m_StateMachine(profilingStateMachine)
36  {}
37 
38  void operator()(const Packet& packet) override;
39 
40 private:
41  const ICounterDirectory& m_CounterDirectory;
42  ISendCounterPacket& m_SendCounterPacket;
43  ISendTimelinePacket& m_SendTimelinePacket;
44  const ProfilingStateMachine& m_StateMachine;
45 };
46 
47 } // namespace profiling
48 
49 } // namespace armnn
+
RequestCounterDirectoryCommandHandler(uint32_t familyId, uint32_t packetId, uint32_t version, ICounterDirectory &counterDirectory, ISendCounterPacket &sendCounterPacket, ISendTimelinePacket &sendTimelinePacket, ProfilingStateMachine &profilingStateMachine)
+ + + + +
Copyright (c) 2020 ARM Limited.
+ + + + + + + + +
+
+ + + + -- cgit v1.2.1