From 96becb7e4f5f510344c3850278a706d63a564fc4 Mon Sep 17 00:00:00 2001 From: Jan Eilers Date: Tue, 16 Jun 2020 12:41:49 +0100 Subject: Revert "IVGCVSW-3726 Upload ArmNN Doxygen files" This reverts commit de36e4a9c299028e792c3a5bd99ad0816d806077. Signed-off-by: Jan Eilers Change-Id: Idbf20c12ea07583ca552d7cc7fb517fbadc73fff --- Documentation/classarmnn_1_1_cl_pad_workload.xhtml | 238 --------------------- 1 file changed, 238 deletions(-) delete mode 100644 Documentation/classarmnn_1_1_cl_pad_workload.xhtml (limited to 'Documentation/classarmnn_1_1_cl_pad_workload.xhtml') diff --git a/Documentation/classarmnn_1_1_cl_pad_workload.xhtml b/Documentation/classarmnn_1_1_cl_pad_workload.xhtml deleted file mode 100644 index 339b072d5b..0000000000 --- a/Documentation/classarmnn_1_1_cl_pad_workload.xhtml +++ /dev/null @@ -1,238 +0,0 @@ - - - - - - - - - - - - - -ArmNN: ClPadWorkload Class Reference - - - - - - - - - - - - - - - - -
-
- - - - ArmNN - - - -
-
-  20.02 -
-
-
- - - - - - - -
-
- -
-
-
- -
- -
-
- - -
- -
- -
- -
-
ClPadWorkload Class Reference
-
-
- -

#include <ClPadWorkload.hpp>

-
-Inheritance diagram for ClPadWorkload:
-
-
- - -BaseWorkload< PadQueueDescriptor > -IWorkload - -
- - - - - - - - - - - - - - - - - - - - -

-Public Member Functions

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

Detailed Description

-
-

Definition at line 14 of file ClPadWorkload.hpp.

-

Constructor & Destructor Documentation

- -

◆ ClPadWorkload()

- -
-
- - - - - - - - - - - - - - - - - - -
ClPadWorkload (const PadQueueDescriptordescriptor,
const WorkloadInfoinfo 
)
-
- -

Definition at line 18 of file ClPadWorkload.cpp.

- -

References BaseWorkload< PadQueueDescriptor >::m_Data, QueueDescriptor::m_Inputs, QueueDescriptor::m_Outputs, PadDescriptor::m_PadList, QueueDescriptorWithParameters< LayerDescriptor >::m_Parameters, and QueueDescriptor::ValidateInputsOutputs().

-
19  : BaseWorkload<PadQueueDescriptor>(descriptor, info)
20 {
21  this->m_Data.ValidateInputsOutputs("ClPadWorkload", 1, 1);
22 
23  arm_compute::ICLTensor& input = static_cast<IClTensorHandle*>(this->m_Data.m_Inputs[0])->GetTensor();
24  arm_compute::ICLTensor& output = static_cast<IClTensorHandle*>(this->m_Data.m_Outputs[0])->GetTensor();
25 
26  std::vector<std::pair<unsigned int, unsigned int>> reversed_PadList(descriptor.m_Parameters.m_PadList.size());
27 
28  std::reverse_copy(std::begin(descriptor.m_Parameters.m_PadList),
29  std::end(descriptor.m_Parameters.m_PadList),
30  std::begin(reversed_PadList));
31 
32  arm_compute::PaddingList padList = static_cast<arm_compute::PaddingList>(reversed_PadList);
33 
34  arm_compute::PixelValue pixelValue = GetPixelValue(input, descriptor.m_Parameters.m_PadValue);
35 
36  m_Layer.configure(&input, &output, padList, pixelValue);
37 }
const PadQueueDescriptor 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 39 of file ClPadWorkload.cpp.

- -

References ARMNN_SCOPED_PROFILING_EVENT_CL, CHECK_LOCATION, and armnn::RunClFunction().

-
40 {
41  ARMNN_SCOPED_PROFILING_EVENT_CL("ClPadWorkload_Execute");
42  RunClFunction(m_Layer, CHECK_LOCATION());
43 }
#define ARMNN_SCOPED_PROFILING_EVENT_CL(name)
-
void RunClFunction(arm_compute::IFunction &function, const CheckLocation &location)
-
#define CHECK_LOCATION()
Definition: Exceptions.hpp:192
-
-
-
-
The documentation for this class was generated from the following files: -
-
- - - - -- cgit v1.2.1