From f86be93b7492b381370cae7bf71eca8572a0cbae Mon Sep 17 00:00:00 2001 From: Matthew Sloyan Date: Tue, 24 Aug 2021 16:27:15 +0100 Subject: IVGCVSW-5924 Update 21.08 Doxygen Documents * Also updated latest symlink. Signed-off-by: Matthew Sloyan Change-Id: If9b4e0e52464abdf797b9eb858ae19bcc64c2aea --- 21.08/classarmnn_1_1_neon_maximum_workload.xhtml | 239 +++++++++++++++++++++++ 1 file changed, 239 insertions(+) create mode 100644 21.08/classarmnn_1_1_neon_maximum_workload.xhtml (limited to '21.08/classarmnn_1_1_neon_maximum_workload.xhtml') diff --git a/21.08/classarmnn_1_1_neon_maximum_workload.xhtml b/21.08/classarmnn_1_1_neon_maximum_workload.xhtml new file mode 100644 index 0000000000..75368b0c6a --- /dev/null +++ b/21.08/classarmnn_1_1_neon_maximum_workload.xhtml @@ -0,0 +1,239 @@ + + + + + + + + + + + + + +ArmNN: NeonMaximumWorkload Class Reference + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  21.08 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
NeonMaximumWorkload Class Reference
+
+
+ +

#include <NeonMaximumWorkload.hpp>

+
+Inheritance diagram for NeonMaximumWorkload:
+
+
+ + +BaseWorkload< MaximumQueueDescriptor > +IWorkload + +
+ + + + + + + + + + + + + + + + + + + + + + +

+Public Member Functions

 NeonMaximumWorkload (const MaximumQueueDescriptor &descriptor, const WorkloadInfo &info)
 
virtual void Execute () const override
 
- Public Member Functions inherited from BaseWorkload< MaximumQueueDescriptor >
 BaseWorkload (const MaximumQueueDescriptor &descriptor, const WorkloadInfo &info)
 
void ExecuteAsync (WorkingMemDescriptor &workingMemDescriptor) override
 
void PostAllocationConfigure () override
 
const MaximumQueueDescriptorGetData () 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< MaximumQueueDescriptor >
MaximumQueueDescriptor m_Data
 
const profiling::ProfilingGuid m_Guid
 
+

Detailed Description

+
+

Definition at line 19 of file NeonMaximumWorkload.hpp.

+

Constructor & Destructor Documentation

+ +

◆ NeonMaximumWorkload()

+ +
+
+ + + + + + + + + + + + + + + + + + +
NeonMaximumWorkload (const MaximumQueueDescriptordescriptor,
const WorkloadInfoinfo 
)
+
+ +

Definition at line 27 of file NeonMaximumWorkload.cpp.

+ +

References BaseWorkload< MaximumQueueDescriptor >::m_Data, QueueDescriptor::m_Inputs, QueueDescriptor::m_Outputs, and QueueDescriptor::ValidateInputsOutputs().

+
29  : BaseWorkload<MaximumQueueDescriptor>(descriptor, info)
30 {
31  m_Data.ValidateInputsOutputs("NeonMaximumWorkload", 2, 1);
32 
33  arm_compute::ITensor& input0 = PolymorphicDowncast<IAclTensorHandle*>(m_Data.m_Inputs[0])->GetTensor();
34  arm_compute::ITensor& input1 = PolymorphicDowncast<IAclTensorHandle*>(m_Data.m_Inputs[1])->GetTensor();
35  arm_compute::ITensor& output = PolymorphicDowncast<IAclTensorHandle*>(m_Data.m_Outputs[0])->GetTensor();
36 
37  m_MaxLayer.configure(&input0, &input1, &output);
38 }
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 40 of file NeonMaximumWorkload.cpp.

+ +

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

+
41 {
42  ARMNN_SCOPED_PROFILING_EVENT_NEON_GUID("NeonMaximumWorkload_Execute", this->GetGuid());
43  m_MaxLayer.run();
44 }
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