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 --- .../classarmnn_1_1_sync_mem_generic_workload.xhtml | 235 +++++++++++++++++++++ 1 file changed, 235 insertions(+) create mode 100644 21.02/classarmnn_1_1_sync_mem_generic_workload.xhtml (limited to '21.02/classarmnn_1_1_sync_mem_generic_workload.xhtml') diff --git a/21.02/classarmnn_1_1_sync_mem_generic_workload.xhtml b/21.02/classarmnn_1_1_sync_mem_generic_workload.xhtml new file mode 100644 index 0000000000..4599cd74f4 --- /dev/null +++ b/21.02/classarmnn_1_1_sync_mem_generic_workload.xhtml @@ -0,0 +1,235 @@ + + + + + + + + + + + + + +ArmNN: SyncMemGenericWorkload Class Reference + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  21.02 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
SyncMemGenericWorkload Class Reference
+
+
+ +

#include <MemSyncWorkload.hpp>

+
+Inheritance diagram for SyncMemGenericWorkload:
+
+
+ + +BaseWorkload< MemSyncQueueDescriptor > +IWorkload + +
+ + + + + + + + + + + + + + + + + + + + +

+Public Member Functions

 SyncMemGenericWorkload (const MemSyncQueueDescriptor &descriptor, const WorkloadInfo &info)
 
void Execute () const override
 
- Public Member Functions inherited from BaseWorkload< MemSyncQueueDescriptor >
 BaseWorkload (const MemSyncQueueDescriptor &descriptor, const WorkloadInfo &info)
 
void PostAllocationConfigure () override
 
const MemSyncQueueDescriptorGetData () const
 
profiling::ProfilingGuid GetGuid () const final
 
- Public Member Functions inherited from IWorkload
virtual ~IWorkload ()
 
virtual void RegisterDebugCallback (const DebugCallbackFunction &)
 
+ + + + + + +

+Additional Inherited Members

- Protected Attributes inherited from BaseWorkload< MemSyncQueueDescriptor >
const MemSyncQueueDescriptor m_Data
 
const profiling::ProfilingGuid m_Guid
 
+

Detailed Description

+
+

Definition at line 17 of file MemSyncWorkload.hpp.

+

Constructor & Destructor Documentation

+ +

◆ SyncMemGenericWorkload()

+ +
+
+ + + + + + + + + + + + + + + + + + +
SyncMemGenericWorkload (const MemSyncQueueDescriptordescriptor,
const WorkloadInfoinfo 
)
+
+ +

Definition at line 16 of file MemSyncWorkload.cpp.

+ +

References QueueDescriptor::m_Inputs.

+
18  : BaseWorkload<MemSyncQueueDescriptor>(descriptor, info)
19 {
20  m_TensorHandle = descriptor.m_Inputs[0];
21 }
+
+
+
+

Member Function Documentation

+ +

◆ Execute()

+ +
+
+ + + + + +
+ + + + + + + +
void Execute () const
+
+overridevirtual
+
+ +

Implements IWorkload.

+ +

Definition at line 23 of file MemSyncWorkload.cpp.

+ +

References ARMNN_SCOPED_PROFILING_EVENT, ITensorHandle::Map(), armnn::Undefined, and ITensorHandle::Unmap().

+
24 {
25  ARMNN_SCOPED_PROFILING_EVENT(Compute::Undefined, "SyncMemGeneric_Execute");
26  m_TensorHandle->Map(true);
27  m_TensorHandle->Unmap();
28 }
#define ARMNN_SCOPED_PROFILING_EVENT(backendId, name)
Definition: Profiling.hpp:173
+ +
virtual const void * Map(bool blocking=true) const =0
Map the tensor data for access.
+
virtual void Unmap() const =0
Unmap the tensor data.
+
+
+
+
The documentation for this class was generated from the following files: +
+
+ + + + -- cgit v1.2.1