From a983e4699082a0b1ef685bab7354f2ad9cd37a44 Mon Sep 17 00:00:00 2001 From: Colm Donelan Date: Wed, 20 May 2020 16:12:19 +0100 Subject: Updating Doxygen documentation for 20.05 release. Change-Id: I4d624343ed5fd6ae269c3d53532903084508fd14 Signed-off-by: Colm Donelan --- 20.05/classarmnn_1_1_neon_exp_workload.xhtml | 236 +++++++++++++++++++++++++++ 1 file changed, 236 insertions(+) create mode 100644 20.05/classarmnn_1_1_neon_exp_workload.xhtml (limited to '20.05/classarmnn_1_1_neon_exp_workload.xhtml') diff --git a/20.05/classarmnn_1_1_neon_exp_workload.xhtml b/20.05/classarmnn_1_1_neon_exp_workload.xhtml new file mode 100644 index 0000000000..784edd387b --- /dev/null +++ b/20.05/classarmnn_1_1_neon_exp_workload.xhtml @@ -0,0 +1,236 @@ + + + + + + + + + + + + + +ArmNN: NeonExpWorkload Class Reference + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  20.05 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
NeonExpWorkload Class Reference
+
+
+ +

#include <NeonExpWorkload.hpp>

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

+Public Member Functions

 NeonExpWorkload (const ElementwiseUnaryQueueDescriptor &descriptor, const WorkloadInfo &info)
 
virtual void Execute () const override
 
- Public Member Functions inherited from BaseWorkload< ElementwiseUnaryQueueDescriptor >
 BaseWorkload (const ElementwiseUnaryQueueDescriptor &descriptor, const WorkloadInfo &info)
 
void PostAllocationConfigure () override
 
const ElementwiseUnaryQueueDescriptorGetData () const
 
profiling::ProfilingGuid GetGuid () const final
 
- Public Member Functions inherited from IWorkload
virtual ~IWorkload ()
 
virtual void RegisterDebugCallback (const DebugCallbackFunction &)
 
+ + + + + + +

+Additional Inherited Members

- Protected Attributes inherited from BaseWorkload< ElementwiseUnaryQueueDescriptor >
const ElementwiseUnaryQueueDescriptor m_Data
 
const profiling::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 BaseWorkload< ElementwiseUnaryQueueDescriptor >::m_Data, QueueDescriptor::m_Inputs, QueueDescriptor::m_Outputs, and QueueDescriptor::ValidateInputsOutputs().

+
26  : BaseWorkload<ElementwiseUnaryQueueDescriptor>(descriptor, info)
27 {
28  m_Data.ValidateInputsOutputs("NeonExpWorkload", 1, 1);
29 
30  arm_compute::ITensor& input = PolymorphicDowncast<IAclTensorHandle*>(m_Data.m_Inputs[0])->GetTensor();
31  arm_compute::ITensor& output = PolymorphicDowncast<IAclTensorHandle*>(m_Data.m_Outputs[0])->GetTensor();
32 
33  m_ExpLayer.configure(&input, &output);
34 }
const ElementwiseUnaryQueueDescriptor m_Data
Definition: Workload.hpp:46
+
void ValidateInputsOutputs(const std::string &descName, unsigned int numExpectedIn, unsigned int numExpectedOut) const
+
std::vector< ITensorHandle * > m_Outputs
+ +
std::vector< ITensorHandle * > m_Inputs
+
+
+
+

Member Function Documentation

+ +

◆ Execute()

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

Implements IWorkload.

+ +

Definition at line 36 of file NeonExpWorkload.cpp.

+ +

References ARMNN_SCOPED_PROFILING_EVENT_NEON.

+
37 {
38  ARMNN_SCOPED_PROFILING_EVENT_NEON("NeonExpWorkload_Execute");
39  m_ExpLayer.run();
40 }
#define ARMNN_SCOPED_PROFILING_EVENT_NEON(name)
+
+
+
+
The documentation for this class was generated from the following files: +
+
+ + + + -- cgit v1.2.1