From 6f92c8e9f8bb38dcf5dccf8deeff5112ecd8e37c Mon Sep 17 00:00:00 2001 From: Nikhil Raj Date: Wed, 22 Nov 2023 11:41:15 +0000 Subject: Update Doxygen for 23.11 Signed-off-by: Nikhil Raj Change-Id: I47cd933f5002cb94a73aa97689d7b3d9c93cb849 --- 23.11/classarmnn_1_1_cl_permute_workload.html | 300 ++++++++++++++++++++++++++ 1 file changed, 300 insertions(+) create mode 100644 23.11/classarmnn_1_1_cl_permute_workload.html (limited to '23.11/classarmnn_1_1_cl_permute_workload.html') diff --git a/23.11/classarmnn_1_1_cl_permute_workload.html b/23.11/classarmnn_1_1_cl_permute_workload.html new file mode 100644 index 0000000000..438db826e3 --- /dev/null +++ b/23.11/classarmnn_1_1_cl_permute_workload.html @@ -0,0 +1,300 @@ + + + + + + + + +Arm NN: ClPermuteWorkload Class Reference + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  23.11 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
ClPermuteWorkload Class Reference
+
+
+ +

#include <ClPermuteWorkload.hpp>

+
+Inheritance diagram for ClPermuteWorkload:
+
+
+
+
[legend]
+
+Collaboration diagram for ClPermuteWorkload:
+
+
+
+
[legend]
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Public Member Functions

 ClPermuteWorkload (const PermuteQueueDescriptor &descriptor, const WorkloadInfo &info, const arm_compute::CLCompileContext &clCompileContext)
 
void Execute () const override
 
- Public Member Functions inherited from ClBaseWorkload< PermuteQueueDescriptor >
 ClBaseWorkload (const PermuteQueueDescriptor &descriptor, const WorkloadInfo &info)
 
void ReplaceInputTensorHandle (ITensorHandle *tensorHandle, unsigned int slot) override
 
void ReplaceOutputTensorHandle (ITensorHandle *tensorHandle, unsigned int slot) override
 
- 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
 
- 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 Member Functions inherited from ClBaseWorkload< PermuteQueueDescriptor >
virtual void Reconfigure ()
 
- Protected Attributes inherited from BaseWorkload< PermuteQueueDescriptor >
PermuteQueueDescriptor m_Data
 
const arm::pipe::ProfilingGuid m_Guid
 
const std::string m_Name
 
+

Detailed Description

+
+

Definition at line 23 of file ClPermuteWorkload.hpp.

+

Constructor & Destructor Documentation

+ +

◆ ClPermuteWorkload()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
ClPermuteWorkload (const PermuteQueueDescriptordescriptor,
const WorkloadInfoinfo,
const arm_compute::CLCompileContext & clCompileContext 
)
+
+ +

Definition at line 29 of file ClPermuteWorkload.cpp.

+
32  : ClBaseWorkload<PermuteQueueDescriptor>(descriptor, info)
+
33 {
+
34  // Report Profiling Details
+
35  ARMNN_REPORT_PROFILING_WORKLOAD_DESC("ClPermuteWorkload_Construct",
+
36  descriptor.m_Parameters,
+
37  info,
+
38  this->GetGuid());
+
39 
+
40  using armcomputetensorutils::BuildArmComputePermutationVector;
+
41 
+ +
43 
+
44  const arm_compute::ICLTensor& input = static_cast<IClTensorHandle*>(m_Data.m_Inputs[0])->GetTensor();
+
45  arm_compute::ICLTensor& output = static_cast<IClTensorHandle*>(m_Data.m_Outputs[0])->GetTensor();
+ +
47 
+
48  {
+
49  ARMNN_SCOPED_PROFILING_EVENT_CL_NAME_GUID("ClPermuteWorkload_configure");
+
50  // Run the layer.
+
51  m_PermuteFunction.configure(clCompileContext, &input, &output, BuildArmComputePermutationVector(mappings));
+
52  }
+
53 }
+
+

References ARMNN_REPORT_PROFILING_WORKLOAD_DESC, armnn::info, and QueueDescriptorWithParameters< LayerDescriptor >::m_Parameters.

+ +
+
+

Member Function Documentation

+ +

◆ Execute()

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

Implements IWorkload.

+ +

Definition at line 55 of file ClPermuteWorkload.cpp.

+
56 {
+
57  ARMNN_SCOPED_PROFILING_EVENT_CL_NAME_GUID("ClPermuteWorkload_Execute");
+
58  RunClFunction(m_PermuteFunction, CHECK_LOCATION());
+
59 }
+
+

References ARMNN_SCOPED_PROFILING_EVENT_CL_NAME_GUID, CHECK_LOCATION, and armnn::RunClFunction().

+ +
+
+
The documentation for this class was generated from the following files: +
+
+
void RunClFunction(arm_compute::IFunction &function, const CheckLocation &location)
+
void ValidateInputsOutputs(const std::string &descName, unsigned int numExpectedIn, unsigned int numExpectedOut) const
+
#define CHECK_LOCATION()
Definition: Exceptions.hpp:203
+
virtual const std::string & GetName() const override
Definition: Workload.hpp:45
+ +
#define ARMNN_SCOPED_PROFILING_EVENT_CL_NAME_GUID(label)
Creates a profiling event that uses GetGuid() and GetName() from the calling class.
+ +
PermutationVector m_DimMappings
Indicates how to translate tensor elements from a given source into the target destination,...
+
std::vector< ITensorHandle * > m_Outputs
+
#define ARMNN_REPORT_PROFILING_WORKLOAD_DESC(name, desc, infos, guid)
Definition: Profiling.hpp:227
+ +
std::vector< ITensorHandle * > m_Inputs
+ + + + -- cgit v1.2.1