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 --- ...lassarmnn_1_1profiling_1_1_profiling_guid.xhtml | 432 +++++++++++++++++++++ 1 file changed, 432 insertions(+) create mode 100644 20.02/classarmnn_1_1profiling_1_1_profiling_guid.xhtml (limited to '20.02/classarmnn_1_1profiling_1_1_profiling_guid.xhtml') diff --git a/20.02/classarmnn_1_1profiling_1_1_profiling_guid.xhtml b/20.02/classarmnn_1_1profiling_1_1_profiling_guid.xhtml new file mode 100644 index 0000000000..1a742f2cd9 --- /dev/null +++ b/20.02/classarmnn_1_1profiling_1_1_profiling_guid.xhtml @@ -0,0 +1,432 @@ + + + + + + + + + + + + + +ArmNN: ProfilingGuid Class Reference + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  20.02 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
ProfilingGuid Class Reference
+
+
+ +

#include <Types.hpp>

+
+Inheritance diagram for ProfilingGuid:
+
+
+ + +ProfilingDynamicGuid +ProfilingStaticGuid + +
+ + + + + + + + + + + + + + + + + + +

+Public Member Functions

 ProfilingGuid (uint64_t guid)
 
 operator uint64_t () const
 
bool operator== (const ProfilingGuid &other) const
 
bool operator!= (const ProfilingGuid &other) const
 
bool operator< (const ProfilingGuid &other) const
 
bool operator<= (const ProfilingGuid &other) const
 
bool operator> (const ProfilingGuid &other) const
 
bool operator>= (const ProfilingGuid &other) const
 
+ + + +

+Protected Attributes

uint64_t m_Guid
 
+

Detailed Description

+
+

Definition at line 252 of file Types.hpp.

+

Constructor & Destructor Documentation

+ +

◆ ProfilingGuid()

+ +
+
+ + + + + +
+ + + + + + + + +
ProfilingGuid (uint64_t guid)
+
+inline
+
+ +

Definition at line 255 of file Types.hpp.

+
255 : m_Guid(guid) {}
+
+
+
+

Member Function Documentation

+ +

◆ operator uint64_t()

+ +
+
+ + + + + +
+ + + + + + + +
operator uint64_t () const
+
+inline
+
+ +

Definition at line 257 of file Types.hpp.

+
257 { return m_Guid; }
+
+
+
+ +

◆ operator!=()

+ +
+
+ + + + + +
+ + + + + + + + +
bool operator!= (const ProfilingGuidother) const
+
+inline
+
+ +

Definition at line 264 of file Types.hpp.

+ +

References ProfilingGuid::m_Guid.

+
265  {
266  return m_Guid != other.m_Guid;
267  }
+
+
+
+ +

◆ operator<()

+ +
+
+ + + + + +
+ + + + + + + + +
bool operator< (const ProfilingGuidother) const
+
+inline
+
+ +

Definition at line 269 of file Types.hpp.

+ +

References ProfilingGuid::m_Guid.

+
270  {
271  return m_Guid < other.m_Guid;
272  }
+
+
+
+ +

◆ operator<=()

+ +
+
+ + + + + +
+ + + + + + + + +
bool operator<= (const ProfilingGuidother) const
+
+inline
+
+ +

Definition at line 274 of file Types.hpp.

+ +

References ProfilingGuid::m_Guid.

+
275  {
276  return m_Guid <= other.m_Guid;
277  }
+
+
+
+ +

◆ operator==()

+ +
+
+ + + + + +
+ + + + + + + + +
bool operator== (const ProfilingGuidother) const
+
+inline
+
+ +

Definition at line 259 of file Types.hpp.

+ +

References ProfilingGuid::m_Guid.

+
260  {
261  return m_Guid == other.m_Guid;
262  }
+
+
+
+ +

◆ operator>()

+ +
+
+ + + + + +
+ + + + + + + + +
bool operator> (const ProfilingGuidother) const
+
+inline
+
+ +

Definition at line 279 of file Types.hpp.

+ +

References ProfilingGuid::m_Guid.

+
280  {
281  return m_Guid > other.m_Guid;
282  }
+
+
+
+ +

◆ operator>=()

+ +
+
+ + + + + +
+ + + + + + + + +
bool operator>= (const ProfilingGuidother) const
+
+inline
+
+ +

Definition at line 284 of file Types.hpp.

+ +

References ProfilingGuid::m_Guid.

+
285  {
286  return m_Guid >= other.m_Guid;
287  }
+
+
+
+

Member Data Documentation

+ +

◆ m_Guid

+ +
+
+ + + + + +
+ + + + +
uint64_t m_Guid
+
+protected
+
+
+
The documentation for this class was generated from the following file: +
+
+ + + + -- cgit v1.2.1