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_cl_mean_workload.html | 299 ++++++++++++++++++++++++++++ 1 file changed, 299 insertions(+) create mode 100644 latest/classarmnn_1_1_cl_mean_workload.html (limited to 'latest/classarmnn_1_1_cl_mean_workload.html') diff --git a/latest/classarmnn_1_1_cl_mean_workload.html b/latest/classarmnn_1_1_cl_mean_workload.html new file mode 100644 index 0000000000..5e4821c99b --- /dev/null +++ b/latest/classarmnn_1_1_cl_mean_workload.html @@ -0,0 +1,299 @@ + + + + + + + + +Arm NN: ClMeanWorkload Class Reference + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  23.08 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
ClMeanWorkload Class Reference
+
+
+ +

#include <ClMeanWorkload.hpp>

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

+Public Member Functions

 ClMeanWorkload (const MeanQueueDescriptor &descriptor, const WorkloadInfo &info, const arm_compute::CLCompileContext &clCompileContext)
 
void Execute () const override
 
- Public Member Functions inherited from ClBaseWorkload< MeanQueueDescriptor >
 ClBaseWorkload (const MeanQueueDescriptor &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< MeanQueueDescriptor >
 BaseWorkload (const MeanQueueDescriptor &descriptor, const WorkloadInfo &info)
 
virtual const std::string & GetName () const override
 
void ExecuteAsync (ExecutionData &executionData) override
 
void PostAllocationConfigure () override
 
const MeanQueueDescriptorGetData () 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< MeanQueueDescriptor >
virtual void Reconfigure ()
 
- Protected Attributes inherited from BaseWorkload< MeanQueueDescriptor >
MeanQueueDescriptor m_Data
 
const arm::pipe::ProfilingGuid m_Guid
 
const std::string m_Name
 
+

Detailed Description

+
+

Definition at line 19 of file ClMeanWorkload.hpp.

+

Constructor & Destructor Documentation

+ +

◆ ClMeanWorkload()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
ClMeanWorkload (const MeanQueueDescriptordescriptor,
const WorkloadInfoinfo,
const arm_compute::CLCompileContext & clCompileContext 
)
+
+ +

Definition at line 31 of file ClMeanWorkload.cpp.

+
34  : ClBaseWorkload<MeanQueueDescriptor>(descriptor, info)
+
35 {
+
36  // Report Profiling Details
+
37  ARMNN_REPORT_PROFILING_WORKLOAD_DESC("ClMeanWorkload_Construct",
+
38  descriptor.m_Parameters,
+
39  info,
+
40  this->GetGuid());
+
41  m_Data.ValidateInputsOutputs("ClMeanWorkload", 1, 1);
+
42 
+
43  arm_compute::ICLTensor& input = static_cast<IClTensorHandle*>(m_Data.m_Inputs[0])->GetTensor();
+
44  arm_compute::ICLTensor& output = static_cast<IClTensorHandle*>(m_Data.m_Outputs[0])->GetTensor();
+
45 
+
46  arm_compute::Coordinates coords = BuildArmComputeReductionCoordinates(input.info()->num_dimensions(),
+
47  info.m_InputTensorInfos[0].GetNumDimensions(),
+ +
49 
+
50  {
+
51  ARMNN_SCOPED_PROFILING_EVENT_CL_NAME_GUID("ClMeanWorkload_configure");
+
52  m_Layer.configure(clCompileContext, &input, coords, m_Data.m_Parameters.m_KeepDims, &output);
+
53  }
+
54 }
+
+

References ARMNN_REPORT_PROFILING_WORKLOAD_DESC, armnn::info, BaseWorkload< MeanQueueDescriptor >::m_Data, QueueDescriptor::m_Inputs, QueueDescriptor::m_Outputs, QueueDescriptorWithParameters< LayerDescriptor >::m_Parameters, and QueueDescriptor::ValidateInputsOutputs().

+ +
+
+

Member Function Documentation

+ +

◆ Execute()

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

Implements IWorkload.

+ +

Definition at line 56 of file ClMeanWorkload.cpp.

+
57 {
+
58  ARMNN_SCOPED_PROFILING_EVENT_CL_NAME_GUID("ClMeanWorkload_Execute");
+
59  m_Layer.run();
+
60 }
+
+

References ARMNN_SCOPED_PROFILING_EVENT_CL_NAME_GUID.

+ +
+
+
The documentation for this class was generated from the following files: +
+
+
void ValidateInputsOutputs(const std::string &descName, unsigned int numExpectedIn, unsigned int numExpectedOut) const
+
IConnectableLayer * m_Layer
+
std::array< unsigned int, MaxNumOfTensorDimensions > Coordinates
+
bool m_KeepDims
Enable/disable keep dimensions. If true, then the reduced dimensions that are of length 1 are kept.
+ +
#define ARMNN_SCOPED_PROFILING_EVENT_CL_NAME_GUID(label)
Creates a profiling event that uses GetGuid() and GetName() from the calling class.
+ +
std::vector< ITensorHandle * > m_Outputs
+
#define ARMNN_REPORT_PROFILING_WORKLOAD_DESC(name, desc, infos, guid)
Definition: Profiling.hpp:227
+
std::vector< unsigned int > m_Axis
Values for the dimensions to reduce.
+ +
std::vector< ITensorHandle * > m_Inputs
+ + + + -- cgit v1.2.1