From de36e4a9c299028e792c3a5bd99ad0816d806077 Mon Sep 17 00:00:00 2001 From: Ryan OShea Date: Fri, 13 Mar 2020 16:26:19 +0000 Subject: IVGCVSW-3726 Upload ArmNN Doxygen files * Upload current ArmNN Doxygen files Signed-off-by: Ryan OShea Change-Id: I8989ed16ee40a99a4495b100bd009cf3e24a7285 --- .../_command_handler_functor_8hpp_source.html | 109 +++++++++++++++++++++ 1 file changed, 109 insertions(+) create mode 100644 Documentation/_command_handler_functor_8hpp_source.html (limited to 'Documentation/_command_handler_functor_8hpp_source.html') diff --git a/Documentation/_command_handler_functor_8hpp_source.html b/Documentation/_command_handler_functor_8hpp_source.html new file mode 100644 index 0000000000..c55edbcaaf --- /dev/null +++ b/Documentation/_command_handler_functor_8hpp_source.html @@ -0,0 +1,109 @@ + + + + + + + +ArmNN: src/profiling/CommandHandlerFunctor.hpp Source File + + + + + + + + + + + + + + +
+
+ + + + + + +
+
ArmNN +  NotReleased +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+
+
CommandHandlerFunctor.hpp
+
+
+Go to the documentation of this file.
1 //
2 // Copyright © 2017 Arm Ltd. All rights reserved.
3 // SPDX-License-Identifier: MIT
4 //
5 
6 #include "Packet.hpp"
7 
8 #include <cstdint>
9 
10 #include <boost/core/ignore_unused.hpp>
11 
12 namespace armnn
13 {
14 
15 namespace profiling
16 {
17 
18 #pragma once
19 
21 {
22 public:
23  CommandHandlerFunctor(uint32_t familyId, uint32_t packetId, uint32_t version)
24  : m_FamilyId(familyId),
25  m_PacketId(packetId)
26  , m_Version(version)
27  {}
28 
29  uint32_t GetFamilyId() const;
30  uint32_t GetPacketId() const;
31  uint32_t GetVersion() const;
32 
33  virtual void operator()(const Packet& packet) = 0;
34 
36 
37 private:
38  uint32_t m_FamilyId;
39  uint32_t m_PacketId;
40  uint32_t m_Version;
41 };
42 
43 } // namespace profiling
44 
45 } // namespace armnn
virtual void operator()(const Packet &packet)=0
+ + +
CommandHandlerFunctor(uint32_t familyId, uint32_t packetId, uint32_t version)
+ + + + + + +
+
+ + + + -- cgit v1.2.1