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 --- .../classarmnn_1_1_cl_quantize_workload.xhtml | 238 --------------------- 1 file changed, 238 deletions(-) delete mode 100644 Documentation/classarmnn_1_1_cl_quantize_workload.xhtml (limited to 'Documentation/classarmnn_1_1_cl_quantize_workload.xhtml') diff --git a/Documentation/classarmnn_1_1_cl_quantize_workload.xhtml b/Documentation/classarmnn_1_1_cl_quantize_workload.xhtml deleted file mode 100644 index 407cb71754..0000000000 --- a/Documentation/classarmnn_1_1_cl_quantize_workload.xhtml +++ /dev/null @@ -1,238 +0,0 @@ - - - - - - - - - - - - - -ArmNN: ClQuantizeWorkload Class Reference - - - - - - - - - - - - - - - - -
-
- - - - ArmNN - - - -
-
-  20.02 -
-
-
- - - - - - - -
-
- -
-
-
- -
- -
-
- - -
- -
- -
- -
-
ClQuantizeWorkload Class Reference
-
-
- -

#include <ClQuantizeWorkload.hpp>

-
-Inheritance diagram for ClQuantizeWorkload:
-
-
- - -BaseWorkload< QuantizeQueueDescriptor > -IWorkload - -
- - - - - - - - - - - - - - - - - - - - -

-Public Member Functions

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

Detailed Description

-
-

Definition at line 18 of file ClQuantizeWorkload.hpp.

-

Constructor & Destructor Documentation

- -

◆ ClQuantizeWorkload()

- -
-
- - - - - - - - - - - - - - - - - - -
ClQuantizeWorkload (const QuantizeQueueDescriptordescriptor,
const WorkloadInfoinfo 
)
-
- -

Definition at line 32 of file ClQuantizeWorkload.cpp.

- -

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

-
33  : BaseWorkload<QuantizeQueueDescriptor>(descriptor, info)
34 {
35  m_Data.ValidateInputsOutputs("ClQuantizeWorkload", 1, 1);
36 
37  arm_compute::ICLTensor& input = static_cast<IClTensorHandle*>(m_Data.m_Inputs[0])->GetTensor();
38  arm_compute::ICLTensor& output = static_cast<IClTensorHandle*>(m_Data.m_Outputs[0])->GetTensor();
39 
40  m_Layer.configure(&input, &output);
41 }
const QuantizeQueueDescriptor 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 43 of file ClQuantizeWorkload.cpp.

- -

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

-
44 {
45  ARMNN_SCOPED_PROFILING_EVENT_CL("ClQuantizeWorkload_Execute");
46  RunClFunction(m_Layer, CHECK_LOCATION());
47 }
#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