From f4019872c1134c6fcc1d6993e5746f55c1e79208 Mon Sep 17 00:00:00 2001 From: Nikhil Raj Date: Tue, 8 Mar 2022 20:01:38 +0000 Subject: IVGCVSW-6819 Fix the directory structure and broken link to latest docu Signed-off-by: Nikhil Raj Change-Id: I05b559d15faf92c76ff536719693b361316be4f3 --- 22.02/classarmnn_1_1_ref_permute_workload.xhtml | 288 ++++++++++++++++++++++++ 1 file changed, 288 insertions(+) create mode 100644 22.02/classarmnn_1_1_ref_permute_workload.xhtml (limited to '22.02/classarmnn_1_1_ref_permute_workload.xhtml') diff --git a/22.02/classarmnn_1_1_ref_permute_workload.xhtml b/22.02/classarmnn_1_1_ref_permute_workload.xhtml new file mode 100644 index 0000000000..d7be48c37e --- /dev/null +++ b/22.02/classarmnn_1_1_ref_permute_workload.xhtml @@ -0,0 +1,288 @@ + + + + + + + + + + + + + +ArmNN: RefPermuteWorkload< DataType > Class Template Reference + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  22.02 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
RefPermuteWorkload< DataType > Class Template Reference
+
+
+ +

#include <RefPermuteWorkload.hpp>

+
+Inheritance diagram for RefPermuteWorkload< DataType >:
+
+
+ + +TypedWorkload< PermuteQueueDescriptor, DataType > +BaseWorkload< PermuteQueueDescriptor > +IWorkload + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Public Member Functions

void Execute () const override
 
void ExecuteAsync (WorkingMemDescriptor &workingMemDescriptor) 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)
 
void ExecuteAsync (WorkingMemDescriptor &workingMemDescriptor) override
 
void PostAllocationConfigure () override
 
const PermuteQueueDescriptorGetData () const
 
profiling::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 void RegisterDebugCallback (const DebugCallbackFunction &)
 
+ + + +

+Static Public Member Functions

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

+Additional Inherited Members

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

Detailed Description

+

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

+ + +

Definition at line 16 of file RefPermuteWorkload.hpp.

+

Member Function Documentation

+ +

◆ Execute()

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

Implements IWorkload.

+ +

Definition at line 17 of file RefPermuteWorkload.cpp.

+ +

Referenced by RefPermuteWorkload< DataType >::ExecuteAsync(), and RefPermuteWorkload< DataType >::GetName().

+
18 {
20 }
+
void Execute() const override
+
std::vector< ITensorHandle * > m_Outputs
+
std::vector< ITensorHandle * > m_Inputs
+
+
+
+ +

◆ ExecuteAsync()

+ +
+
+ + + + + +
+ + + + + + + + +
void ExecuteAsync (WorkingMemDescriptorworkingMemDescriptor)
+
+overridevirtual
+
+ +

Implements IWorkload.

+ +

Definition at line 23 of file RefPermuteWorkload.cpp.

+ +

References ARMNN_SCOPED_PROFILING_EVENT, armnn::CpuRef, RefPermuteWorkload< DataType >::Execute(), armnn::GetTensorInfo(), WorkingMemDescriptor::m_Inputs, WorkingMemDescriptor::m_Outputs, and armnn::Permute.

+ +

Referenced by RefPermuteWorkload< DataType >::GetName().

+
24 {
25  Execute(workingMemDescriptor.m_Inputs, workingMemDescriptor.m_Outputs);
26 }
void Execute() const override
+
+
+
+ +

◆ GetName()

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

Definition at line 19 of file RefPermuteWorkload.hpp.

+ +

References RefPermuteWorkload< DataType >::Execute(), RefPermuteWorkload< DataType >::ExecuteAsync(), and armnn::GetDataTypeName().

+
20  {
21  static const std::string name = std::string("RefPermute") + GetDataTypeName(DataType) + "Workload";
22  return name;
23  }
constexpr const char * GetDataTypeName(DataType dataType)
Definition: TypesUtils.hpp:202
+
DataType
Definition: Types.hpp:35
+
+
+
+
The documentation for this class was generated from the following files: +
+
+ + + + -- cgit v1.2.1