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_key_8hpp_source.html | 111 +++++++++++++++++++++ 1 file changed, 111 insertions(+) create mode 100644 Documentation/_command_handler_key_8hpp_source.html (limited to 'Documentation/_command_handler_key_8hpp_source.html') diff --git a/Documentation/_command_handler_key_8hpp_source.html b/Documentation/_command_handler_key_8hpp_source.html new file mode 100644 index 0000000000..5485ee2108 --- /dev/null +++ b/Documentation/_command_handler_key_8hpp_source.html @@ -0,0 +1,111 @@ + + + + + + + +ArmNN: src/profiling/CommandHandlerKey.hpp Source File + + + + + + + + + + + + + + +
+
+ + + + + + +
+
ArmNN +  NotReleased +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+
+
CommandHandlerKey.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 #pragma once
7 
8 #include <cstdint>
9 
10 namespace armnn
11 {
12 
13 namespace profiling
14 {
15 
17 {
18 public:
19  CommandHandlerKey(uint32_t familyId, uint32_t packetId, uint32_t version)
20  : m_FamilyId(familyId), m_PacketId(packetId), m_Version(version) {};
21 
22  uint32_t GetFamilyId() const;
23  uint32_t GetPacketId() const;
24  uint32_t GetVersion() const;
25 
26  bool operator< (const CommandHandlerKey& rhs) const;
27  bool operator> (const CommandHandlerKey& rhs) const;
28  bool operator<=(const CommandHandlerKey& rhs) const;
29  bool operator>=(const CommandHandlerKey& rhs) const;
30  bool operator==(const CommandHandlerKey& rhs) const;
31  bool operator!=(const CommandHandlerKey& rhs) const;
32 
33 private:
34  uint32_t m_FamilyId;
35  uint32_t m_PacketId;
36  uint32_t m_Version;
37 };
38 
39 } // namespace profiling
40 
41 } // namespace armnn
+
bool operator<(const CommandHandlerKey &rhs) const
+
CommandHandlerKey(uint32_t familyId, uint32_t packetId, uint32_t version)
+
bool operator==(const CommandHandlerKey &rhs) const
+
bool operator>=(const CommandHandlerKey &rhs) const
+
bool operator!=(const CommandHandlerKey &rhs) const
+ + +
bool operator>(const CommandHandlerKey &rhs) const
+ + +
bool operator<=(const CommandHandlerKey &rhs) const
+
+
+ + + + -- cgit v1.2.1