From fd627ffaec8fd8801d980b4c91ee7c0607ab6aaf Mon Sep 17 00:00:00 2001 From: Jan Eilers Date: Thu, 25 Feb 2021 17:44:00 +0000 Subject: IVGCVSW-5687 Update Doxygen Docu * Update Doxygen Documentation for 21.02 release Signed-off-by: Jan Eilers Change-Id: I9ed2f9caab038836ea99d7b378d7899fe431a4e5 --- 21.02/classarmnn_1_1_neon_fill_workload.xhtml | 235 ++++++++++++++++++++++++++ 1 file changed, 235 insertions(+) create mode 100644 21.02/classarmnn_1_1_neon_fill_workload.xhtml (limited to '21.02/classarmnn_1_1_neon_fill_workload.xhtml') diff --git a/21.02/classarmnn_1_1_neon_fill_workload.xhtml b/21.02/classarmnn_1_1_neon_fill_workload.xhtml new file mode 100644 index 0000000000..20b0b213fb --- /dev/null +++ b/21.02/classarmnn_1_1_neon_fill_workload.xhtml @@ -0,0 +1,235 @@ + + + + + + + + + + + + + +ArmNN: NeonFillWorkload Class Reference + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  21.02 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
NeonFillWorkload Class Reference
+
+
+ +

#include <NeonFillWorkload.hpp>

+
+Inheritance diagram for NeonFillWorkload:
+
+
+ + +BaseWorkload< FillQueueDescriptor > +IWorkload + +
+ + + + + + + + + + + + + + + + + + + + +

+Public Member Functions

 NeonFillWorkload (const FillQueueDescriptor &descriptor, const WorkloadInfo &info)
 
void Execute () const override
 
- Public Member Functions inherited from BaseWorkload< FillQueueDescriptor >
 BaseWorkload (const FillQueueDescriptor &descriptor, const WorkloadInfo &info)
 
void PostAllocationConfigure () override
 
const FillQueueDescriptorGetData () 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< FillQueueDescriptor >
const FillQueueDescriptor m_Data
 
const profiling::ProfilingGuid m_Guid
 
+

Detailed Description

+
+

Definition at line 15 of file NeonFillWorkload.hpp.

+

Constructor & Destructor Documentation

+ +

◆ NeonFillWorkload()

+ +
+
+ + + + + + + + + + + + + + + + + + +
NeonFillWorkload (const FillQueueDescriptordescriptor,
const WorkloadInfoinfo 
)
+
+ +

Definition at line 19 of file NeonFillWorkload.cpp.

+ +

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

+
20  : BaseWorkload<FillQueueDescriptor>(descriptor, info)
21 {
22  m_Data.ValidateInputsOutputs("NeonFillWorkload", 1, 1);
23 
24  arm_compute::ITensor& output = static_cast<IAclTensorHandle*>(m_Data.m_Outputs[0])->GetTensor();
25  arm_compute::PixelValue pixelValue = GetPixelValue(output, descriptor.m_Parameters.m_Value);
26 
27  auto layer = std::make_unique<arm_compute::NEFill>();
28  layer->configure(&output, pixelValue);
29  m_Layer.reset(layer.release());
30 }
const FillQueueDescriptor m_Data
Definition: Workload.hpp:46
+
void ValidateInputsOutputs(const std::string &descName, unsigned int numExpectedIn, unsigned int numExpectedOut) const
+
std::vector< ITensorHandle * > m_Outputs
+ +
+
+
+

Member Function Documentation

+ +

◆ Execute()

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

Implements IWorkload.

+ +

Definition at line 32 of file NeonFillWorkload.cpp.

+ +

References ARMNN_SCOPED_PROFILING_EVENT_NEON.

+
33 {
34  ARMNN_SCOPED_PROFILING_EVENT_NEON("NeonFillWorkload_Execute");
35  m_Layer->run();
36 }
#define ARMNN_SCOPED_PROFILING_EVENT_NEON(name)
+
+
+
+
The documentation for this class was generated from the following files: +
+
+ + + + -- cgit v1.2.1