From 549b9600a6eaf0727fa084465a75f173edf8f381 Mon Sep 17 00:00:00 2001 From: Nikhil Raj Date: Tue, 24 May 2022 11:32:07 +0100 Subject: Update 22.05 Doxygen Docs after updates to main Readme Signed-off-by: Nikhil Raj Change-Id: I56711772406a41ff81fa136a5fb6c59c9b9cf504 --- 22.05/classarmnn_1_1_neon_exp_workload.xhtml | 253 +++++++++++++++++++++++++++ 1 file changed, 253 insertions(+) create mode 100644 22.05/classarmnn_1_1_neon_exp_workload.xhtml (limited to '22.05/classarmnn_1_1_neon_exp_workload.xhtml') diff --git a/22.05/classarmnn_1_1_neon_exp_workload.xhtml b/22.05/classarmnn_1_1_neon_exp_workload.xhtml new file mode 100644 index 0000000000..f43bde15a4 --- /dev/null +++ b/22.05/classarmnn_1_1_neon_exp_workload.xhtml @@ -0,0 +1,253 @@ + + + + + + + + + + + + + +ArmNN: NeonExpWorkload Class Reference + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  22.05 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
NeonExpWorkload Class Reference
+
+
+ +

#include <NeonExpWorkload.hpp>

+
+Inheritance diagram for NeonExpWorkload:
+
+
+ + +NeonBaseWorkload< ElementwiseUnaryQueueDescriptor > +BaseWorkload< ElementwiseUnaryQueueDescriptor > +IWorkload + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Public Member Functions

 NeonExpWorkload (const ElementwiseUnaryQueueDescriptor &descriptor, const WorkloadInfo &info)
 
virtual void Execute () const override
 
- Public Member Functions inherited from NeonBaseWorkload< ElementwiseUnaryQueueDescriptor >
 NeonBaseWorkload (const ElementwiseUnaryQueueDescriptor &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< ElementwiseUnaryQueueDescriptor >
 BaseWorkload (const ElementwiseUnaryQueueDescriptor &descriptor, const WorkloadInfo &info)
 
void ExecuteAsync (WorkingMemDescriptor &workingMemDescriptor) override
 
void PostAllocationConfigure () override
 
const ElementwiseUnaryQueueDescriptorGetData () const
 
arm::pipe::ProfilingGuid GetGuid () const final
 
virtual bool SupportsTensorHandleReplacement () const override
 
- Public Member Functions inherited from IWorkload
virtual ~IWorkload ()
 
virtual void RegisterDebugCallback (const DebugCallbackFunction &)
 
+ + + + + + + + + +

+Additional Inherited Members

- Protected Member Functions inherited from NeonBaseWorkload< ElementwiseUnaryQueueDescriptor >
virtual void Reconfigure ()
 
- Protected Attributes inherited from BaseWorkload< ElementwiseUnaryQueueDescriptor >
ElementwiseUnaryQueueDescriptor m_Data
 
const arm::pipe::ProfilingGuid m_Guid
 
+

Detailed Description

+
+

Definition at line 17 of file NeonExpWorkload.hpp.

+

Constructor & Destructor Documentation

+ +

◆ NeonExpWorkload()

+ +
+
+ + + + + + + + + + + + + + + + + + +
NeonExpWorkload (const ElementwiseUnaryQueueDescriptordescriptor,
const WorkloadInfoinfo 
)
+
+ +

Definition at line 25 of file NeonExpWorkload.cpp.

+ +

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

+
26  : NeonBaseWorkload<ElementwiseUnaryQueueDescriptor>(descriptor, info)
27 {
28  // Report Profiling Details
29  ARMNN_REPORT_PROFILING_WORKLOAD_DESC("NeonExpWorkload_Construct",
30  descriptor.m_Parameters,
31  info,
32  this->GetGuid());
33 
34  m_Data.ValidateInputsOutputs("NeonExpWorkload", 1, 1);
35 
36  arm_compute::ITensor& input = PolymorphicDowncast<IAclTensorHandle*>(m_Data.m_Inputs[0])->GetTensor();
37  arm_compute::ITensor& output = PolymorphicDowncast<IAclTensorHandle*>(m_Data.m_Outputs[0])->GetTensor();
38 
39  m_ExpLayer.configure(&input, &output);
40 }
void ValidateInputsOutputs(const std::string &descName, unsigned int numExpectedIn, unsigned int numExpectedOut) const
+ +
std::vector< ITensorHandle * > m_Outputs
+ +
#define ARMNN_REPORT_PROFILING_WORKLOAD_DESC(name, desc, infos, guid)
Definition: Profiling.hpp:227
+
std::vector< ITensorHandle * > m_Inputs
+
+
+
+

Member Function Documentation

+ +

◆ Execute()

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

Implements IWorkload.

+ +

Definition at line 42 of file NeonExpWorkload.cpp.

+ +

References ARMNN_SCOPED_PROFILING_EVENT_NEON_GUID, and BaseWorkload< ElementwiseUnaryQueueDescriptor >::GetGuid().

+
43 {
44  ARMNN_SCOPED_PROFILING_EVENT_NEON_GUID("NeonExpWorkload_Execute", this->GetGuid());
45  m_ExpLayer.run();
46 }
arm::pipe::ProfilingGuid GetGuid() const final
Definition: Workload.hpp:59
+
#define ARMNN_SCOPED_PROFILING_EVENT_NEON_GUID(name, guid)
+
+
+
+
The documentation for this class was generated from the following files: +
+
+ + + + -- cgit v1.2.1