From 9aed8fb43441228343b925b42464a55042c47ca0 Mon Sep 17 00:00:00 2001 From: Nikhil Raj Date: Wed, 17 Nov 2021 13:16:45 +0000 Subject: IVGCVSW-6040 Update 21.11 Doxygen Documents Signed-off-by: Nikhil Raj Change-Id: Ia36ec98c4bebc27a69103911ea3409cd7db587a5 --- 21.11/classarmnn_1_1_neon_sin_workload.xhtml | 239 +++++++++++++++++++++++++++ 1 file changed, 239 insertions(+) create mode 100644 21.11/classarmnn_1_1_neon_sin_workload.xhtml (limited to '21.11/classarmnn_1_1_neon_sin_workload.xhtml') diff --git a/21.11/classarmnn_1_1_neon_sin_workload.xhtml b/21.11/classarmnn_1_1_neon_sin_workload.xhtml new file mode 100644 index 0000000000..92e318a9c5 --- /dev/null +++ b/21.11/classarmnn_1_1_neon_sin_workload.xhtml @@ -0,0 +1,239 @@ + + + + + + + + + + + + + +ArmNN: NeonSinWorkload Class Reference + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  21.11 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
NeonSinWorkload Class Reference
+
+
+ +

#include <NeonSinWorkload.hpp>

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

+Public Member Functions

 NeonSinWorkload (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 ExecuteAsync (WorkingMemDescriptor &workingMemDescriptor) override
 
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 >
ElementwiseUnaryQueueDescriptor m_Data
 
const profiling::ProfilingGuid m_Guid
 
+

Detailed Description

+
+

Definition at line 17 of file NeonSinWorkload.hpp.

+

Constructor & Destructor Documentation

+ +

◆ NeonSinWorkload()

+ +
+
+ + + + + + + + + + + + + + + + + + +
NeonSinWorkload (const ElementwiseUnaryQueueDescriptordescriptor,
const WorkloadInfoinfo 
)
+
+ +

Definition at line 25 of file NeonSinWorkload.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("NeonSinWorkload", 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_SinLayer.configure(&input, &output);
34 }
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 NeonSinWorkload.cpp.

+ +

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

+
37 {
38  ARMNN_SCOPED_PROFILING_EVENT_NEON_GUID("NeonSinWorkload_Execute", this->GetGuid());
39  m_SinLayer.run();
40 }
profiling::ProfilingGuid GetGuid() const final
Definition: Workload.hpp:55
+
#define ARMNN_SCOPED_PROFILING_EVENT_NEON_GUID(name, guid)
+
+
+
+
The documentation for this class was generated from the following files: +
+
+ + + + -- cgit v1.2.1