From fd627ffaec8fd8801d980b4c91ee7c0607ab6aaf Mon Sep 17 00:00:00 2001 From: Jan Eilers Date: Thu, 25 Feb 2021 17:44:00 +0000 Subject: IVGCVSW-5687 Update Doxygen Docu * Update Doxygen Documentation for 21.02 release Signed-off-by: Jan Eilers Change-Id: I9ed2f9caab038836ea99d7b378d7899fe431a4e5 --- 21.02/_sample_dynamic_backend_8cpp.xhtml | 219 +++++++++++++++++++++++++++++++ 1 file changed, 219 insertions(+) create mode 100644 21.02/_sample_dynamic_backend_8cpp.xhtml (limited to '21.02/_sample_dynamic_backend_8cpp.xhtml') diff --git a/21.02/_sample_dynamic_backend_8cpp.xhtml b/21.02/_sample_dynamic_backend_8cpp.xhtml new file mode 100644 index 0000000000..0ac10a8309 --- /dev/null +++ b/21.02/_sample_dynamic_backend_8cpp.xhtml @@ -0,0 +1,219 @@ + + + + + + + + + + + + + +ArmNN: src/dynamic/sample/SampleDynamicBackend.cpp File Reference + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  21.02 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
SampleDynamicBackend.cpp File Reference
+
+
+ +

Go to the source code of this file.

+ + + + +

+Namespaces

 sdb
 
+ + + + + + + + + +

+Functions

constexpr const char * SampleDynamicBackendId ()
 
const char * GetBackendId ()
 
void GetVersion (uint32_t *outMajor, uint32_t *outMinor)
 
void * BackendFactory ()
 
+

Function Documentation

+ +

◆ BackendFactory()

+ +
+
+ + + + + + + +
void* BackendFactory ()
+
+ +

Definition at line 119 of file SampleDynamicBackend.cpp.

+
120 {
121  return new sdb::SampleDynamicBackend();
122 }
+
+
+ +

◆ GetBackendId()

+ +
+
+ + + + + + + +
const char* GetBackendId ()
+
+ +

Definition at line 101 of file SampleDynamicBackend.cpp.

+ +

References TestDynamicBackendId().

+
102 {
103  return sdb::SampleDynamicBackend::GetIdStatic().Get().c_str();
104 }
+
+
+ +

◆ GetVersion()

+ +
+
+ + + + + + + + + + + + + + + + + + +
void GetVersion (uint32_t * outMajor,
uint32_t * outMinor 
)
+
+ +

Definition at line 106 of file SampleDynamicBackend.cpp.

+ +

References IBackendInternal::GetApiVersion(), BackendVersion::m_Major, and BackendVersion::m_Minor.

+
107 {
108  if (!outMajor || !outMinor)
109  {
110  return;
111  }
112 
114 
115  *outMajor = apiVersion.m_Major;
116  *outMinor = apiVersion.m_Minor;
117 }
+ +
static constexpr BackendVersion GetApiVersion()
Returns the version of the Backend API.
+ +
+
+
+
+
+ + + + -- cgit v1.2.1