From add078b7f9a658d52ee6e8fe6771ea0517c07674 Mon Sep 17 00:00:00 2001 From: mathad01 Date: Mon, 10 May 2021 16:51:20 +0100 Subject: IVGCVSW-5908 Update 21.05 Doxygen Documents Signed-off-by: mathad01 Change-Id: I95316d4fc5f9d10185492dc835bb2411c1daea7b --- 21.05/structarmnn_1_1_backend_version.xhtml | 318 ++++++++++++++++++++++++++++ 1 file changed, 318 insertions(+) create mode 100644 21.05/structarmnn_1_1_backend_version.xhtml (limited to '21.05/structarmnn_1_1_backend_version.xhtml') diff --git a/21.05/structarmnn_1_1_backend_version.xhtml b/21.05/structarmnn_1_1_backend_version.xhtml new file mode 100644 index 0000000000..96bbe20825 --- /dev/null +++ b/21.05/structarmnn_1_1_backend_version.xhtml @@ -0,0 +1,318 @@ + + + + + + + + + + + + + +ArmNN: BackendVersion Struct Reference + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  21.05 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
BackendVersion Struct Reference
+
+
+ +

#include <IBackendInternal.hpp>

+ + + + + + + + + + +

+Public Member Functions

constexpr BackendVersion ()
 
constexpr BackendVersion (uint32_t major, uint32_t minor)
 
bool operator== (const BackendVersion &other) const
 
bool operator<= (const BackendVersion &other) const
 
+ + + + + +

+Public Attributes

uint32_t m_Major
 
uint32_t m_Minor
 
+

Detailed Description

+
+

Definition at line 32 of file IBackendInternal.hpp.

+

Constructor & Destructor Documentation

+ +

◆ BackendVersion() [1/2]

+ +
+
+ + + + + +
+ + + + + + + +
constexpr BackendVersion ()
+
+inline
+
+ +

Definition at line 37 of file IBackendInternal.hpp.

+ +

Referenced by IBackendInternal::GetApiVersion().

+
38  : m_Major(0)
39  , m_Minor(0)
40  {}
+ +
+
+
+ +

◆ BackendVersion() [2/2]

+ +
+
+ + + + + +
+ + + + + + + + + + + + + + + + + + +
constexpr BackendVersion (uint32_t major,
uint32_t minor 
)
+
+inline
+
+ +

Definition at line 41 of file IBackendInternal.hpp.

+
42  : m_Major(major)
43  , m_Minor(minor)
44  {}
+ +
+
+
+

Member Function Documentation

+ +

◆ operator<=()

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

Definition at line 53 of file IBackendInternal.hpp.

+ +

References BackendVersion::m_Major, and BackendVersion::m_Minor.

+
54  {
55  return this->m_Major < other.m_Major ||
56  (this->m_Major == other.m_Major &&
57  this->m_Minor <= other.m_Minor);
58  }
+ +
+
+
+ +

◆ operator==()

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

Definition at line 46 of file IBackendInternal.hpp.

+ +

References BackendVersion::m_Major, and BackendVersion::m_Minor.

+
47  {
48  return this == &other ||
49  (this->m_Major == other.m_Major &&
50  this->m_Minor == other.m_Minor);
51  }
+ +
+
+
+

Member Data Documentation

+ +

◆ m_Major

+ + + +

◆ m_Minor

+ + +
The documentation for this struct was generated from the following file: +
+
+ + + + -- cgit v1.2.1