From ae050524109f1ce827962665436ef7430f2ac479 Mon Sep 17 00:00:00 2001 From: David Monahan Date: Wed, 22 Mar 2023 16:48:58 +0000 Subject: IVGCVSW-7255 Update Doxygen Documentation and publish on GitHub. * Updating Doxygen documentation for 23.02 release. Signed-off-by: David Monahan Change-Id: I545574ff7664b4595d2fe6a91a3c35d2ad55df82 --- latest/classarmnn_1_1_ref_transpose_workload.xhtml | 300 +++++++++++++++++++++ 1 file changed, 300 insertions(+) create mode 100644 latest/classarmnn_1_1_ref_transpose_workload.xhtml (limited to 'latest/classarmnn_1_1_ref_transpose_workload.xhtml') diff --git a/latest/classarmnn_1_1_ref_transpose_workload.xhtml b/latest/classarmnn_1_1_ref_transpose_workload.xhtml new file mode 100644 index 0000000000..2ec762e500 --- /dev/null +++ b/latest/classarmnn_1_1_ref_transpose_workload.xhtml @@ -0,0 +1,300 @@ + + + + + + + + + + + + + +ArmNN: RefTransposeWorkload< DataType > Class Template Reference + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  23.02 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
RefTransposeWorkload< DataType > Class Template Reference
+
+
+ +

#include <RefTransposeWorkload.hpp>

+
+Inheritance diagram for RefTransposeWorkload< DataType >:
+
+
+ + +TypedWorkload< TransposeQueueDescriptor, DataType > +BaseWorkload< TransposeQueueDescriptor > +IWorkload + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Public Member Functions

void Execute () const override
 
void ExecuteAsync (ExecutionData &executionData) override
 
- Public Member Functions inherited from TypedWorkload< TransposeQueueDescriptor, DataType >
 TypedWorkload (const TransposeQueueDescriptor &descriptor, const WorkloadInfo &info)
 
- Public Member Functions inherited from BaseWorkload< TransposeQueueDescriptor >
 BaseWorkload (const TransposeQueueDescriptor &descriptor, const WorkloadInfo &info)
 
void ExecuteAsync (ExecutionData &executionData) override
 
void PostAllocationConfigure () override
 
const TransposeQueueDescriptorGetData () const
 
arm::pipe::ProfilingGuid GetGuid () const final
 
virtual bool SupportsTensorHandleReplacement () const override
 
void ReplaceInputTensorHandle (ITensorHandle *tensorHandle, unsigned int slot) override
 
void ReplaceOutputTensorHandle (ITensorHandle *tensorHandle, unsigned int slot) override
 
- Public Member Functions inherited from IWorkload
virtual ~IWorkload ()
 
virtual arm::pipe::ProfilingGuid GetGuid () const =0
 
virtual bool SupportsTensorHandleReplacement () const =0
 
virtual void RegisterDebugCallback (const DebugCallbackFunction &)
 
virtual armnn::Optional< armnn::MemoryRequirementsGetMemoryRequirements ()
 
+ + + +

+Static Public Member Functions

static const std::string & GetName ()
 
+ + + + + + +

+Additional Inherited Members

- Protected Attributes inherited from BaseWorkload< TransposeQueueDescriptor >
TransposeQueueDescriptor m_Data
 
const arm::pipe::ProfilingGuid m_Guid
 
+

Detailed Description

+

template<armnn::DataType DataType>
+class armnn::RefTransposeWorkload< DataType >

+ + +

Definition at line 16 of file RefTransposeWorkload.hpp.

+

Member Function Documentation

+ +

◆ Execute()

+ +
+
+ + + + + +
+ + + + +
void Execute
+
+overridevirtual
+
+ +

Implements IWorkload.

+ +

Definition at line 17 of file RefTransposeWorkload.cpp.

+
18 {
+ +
20 }
+
+
+
+ +

◆ ExecuteAsync()

+ +
+
+ + + + + +
+ + + + + + + + +
void ExecuteAsync (ExecutionDataexecutionData)
+
+overridevirtual
+
+ +

Implements IWorkload.

+ +

Definition at line 23 of file RefTransposeWorkload.cpp.

+
24 {
+
25  WorkingMemDescriptor* workingMemDescriptor = static_cast<WorkingMemDescriptor*>(executionData.m_Data);
+
26  Execute(workingMemDescriptor->m_Inputs, workingMemDescriptor->m_Outputs);
+
27 }
+
+

References ExecutionData::m_Data, WorkingMemDescriptor::m_Inputs, and WorkingMemDescriptor::m_Outputs.

+ +
+
+ +

◆ GetName()

+ +
+
+ + + + + +
+ + + + + + + +
static const std::string& GetName ()
+
+inlinestatic
+
+ +

Definition at line 19 of file RefTransposeWorkload.hpp.

+
20  {
+
21  static const std::string name = std::string("RefTranspose") + GetDataTypeName(DataType) + "Workload";
+
22  return name;
+
23  }
+
+

References armnn::GetDataTypeName().

+ +
+
+
The documentation for this class was generated from the following files: +
+
+ + +
DataType
Definition: Types.hpp:48
+
std::vector< ITensorHandle * > m_Outputs
+
constexpr const char * GetDataTypeName(DataType dataType)
Definition: TypesUtils.hpp:206
+
std::vector< ITensorHandle * > m_Inputs
+ + + + -- cgit v1.2.1