From 03c7ff3f6188240baaeaeb405a357a0c58195fec Mon Sep 17 00:00:00 2001 From: Nikhil Raj Date: Tue, 22 Aug 2023 12:00:04 +0100 Subject: IVGCVSW-7702 Update Doxygen Docu for 23.08 Signed-off-by: Nikhil Raj Change-Id: I357a9f7e47614589327c1ac5d95b6224ff77103d --- latest/classarmnn_1_1_ref_permute_workload.html | 261 ++++++++++++++++++++++++ 1 file changed, 261 insertions(+) create mode 100644 latest/classarmnn_1_1_ref_permute_workload.html (limited to 'latest/classarmnn_1_1_ref_permute_workload.html') diff --git a/latest/classarmnn_1_1_ref_permute_workload.html b/latest/classarmnn_1_1_ref_permute_workload.html new file mode 100644 index 0000000000..d75c5f5816 --- /dev/null +++ b/latest/classarmnn_1_1_ref_permute_workload.html @@ -0,0 +1,261 @@ + + + + + + + + +Arm NN: RefPermuteWorkload< DataType > Class Template Reference + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  23.08 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
RefPermuteWorkload< DataType > Class Template Reference
+
+
+ +

#include <RefPermuteWorkload.hpp>

+
+Inheritance diagram for RefPermuteWorkload< DataType >:
+
+
+
+
[legend]
+
+Collaboration diagram for RefPermuteWorkload< DataType >:
+
+
+
+
[legend]
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Public Member Functions

void Execute () const override
 
void ExecuteAsync (ExecutionData &executionData) override
 
- Public Member Functions inherited from TypedWorkload< PermuteQueueDescriptor, DataType >
 TypedWorkload (const PermuteQueueDescriptor &descriptor, const WorkloadInfo &info)
 
- Public Member Functions inherited from BaseWorkload< PermuteQueueDescriptor >
 BaseWorkload (const PermuteQueueDescriptor &descriptor, const WorkloadInfo &info)
 
virtual const std::string & GetName () const override
 
void ExecuteAsync (ExecutionData &executionData) override
 
void PostAllocationConfigure () override
 
const PermuteQueueDescriptorGetData () 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 const std::string & GetName () const =0
 
virtual void RegisterDebugCallback (const DebugCallbackFunction &)
 
virtual armnn::Optional< armnn::MemoryRequirementsGetMemoryRequirements ()
 
+ + + + + + + + +

+Additional Inherited Members

- Protected Attributes inherited from BaseWorkload< PermuteQueueDescriptor >
PermuteQueueDescriptor m_Data
 
const arm::pipe::ProfilingGuid m_Guid
 
const std::string m_Name
 
+

Detailed Description

+

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

+ + +

Definition at line 16 of file RefPermuteWorkload.hpp.

+

Member Function Documentation

+ +

◆ Execute()

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

Implements IWorkload.

+ +

Definition at line 17 of file RefPermuteWorkload.cpp.

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

◆ ExecuteAsync()

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

Implements IWorkload.

+ +

Definition at line 23 of file RefPermuteWorkload.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.

+ +
+
+
The documentation for this class was generated from the following files: +
+
+
std::vector< ITensorHandle * > m_Outputs
+ +
void Execute() const override
+
std::vector< ITensorHandle * > m_Inputs
+ + + + -- cgit v1.2.1