From cb0630959aeae05bc2ae9f6d80cf5f5983a8fb77 Mon Sep 17 00:00:00 2001 From: Nikhil Raj Date: Wed, 23 Nov 2022 11:05:29 +0000 Subject: IVGCVSW-7075 Update Doxygen for 22.11 Release Signed-off-by: Nikhil Raj Change-Id: Ib5669e8fd3739d1b10f5dd694d020d51799896dc --- 22.11/classarmnn_1_1_ref_quantize_workload.xhtml | 285 +++++++++++++++++++++++ 1 file changed, 285 insertions(+) create mode 100644 22.11/classarmnn_1_1_ref_quantize_workload.xhtml (limited to '22.11/classarmnn_1_1_ref_quantize_workload.xhtml') diff --git a/22.11/classarmnn_1_1_ref_quantize_workload.xhtml b/22.11/classarmnn_1_1_ref_quantize_workload.xhtml new file mode 100644 index 0000000000..18c3b54091 --- /dev/null +++ b/22.11/classarmnn_1_1_ref_quantize_workload.xhtml @@ -0,0 +1,285 @@ + + + + + + + + + + + + + +ArmNN: RefQuantizeWorkload Class Reference + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  22.11 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
RefQuantizeWorkload Class Reference
+
+
+ +

#include <RefQuantizeWorkload.hpp>

+
+Inheritance diagram for RefQuantizeWorkload:
+
+
+ + +RefBaseWorkload< QuantizeQueueDescriptor > +BaseWorkload< QuantizeQueueDescriptor > +IWorkload + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Public Member Functions

 RefQuantizeWorkload (const QuantizeQueueDescriptor &descriptor, const WorkloadInfo &info)
 
void Execute () const override
 
void ExecuteAsync (ExecutionData &executionData) override
 
- Public Member Functions inherited from RefBaseWorkload< QuantizeQueueDescriptor >
 RefBaseWorkload (const QuantizeQueueDescriptor &descriptor, const WorkloadInfo &info)
 
virtual bool SupportsTensorHandleReplacement () const override
 
void ReplaceInputTensorHandle (ITensorHandle *tensorHandle, unsigned int slot) override
 
void ReplaceOutputTensorHandle (ITensorHandle *tensorHandle, unsigned int slot) override
 
- Public Member Functions inherited from BaseWorkload< QuantizeQueueDescriptor >
 BaseWorkload (const QuantizeQueueDescriptor &descriptor, const WorkloadInfo &info)
 
void ExecuteAsync (ExecutionData &executionData) override
 
void PostAllocationConfigure () override
 
const QuantizeQueueDescriptorGetData () const
 
arm::pipe::ProfilingGuid GetGuid () const final
 
- Public Member Functions inherited from IWorkload
virtual ~IWorkload ()
 
virtual void RegisterDebugCallback (const DebugCallbackFunction &)
 
virtual armnn::Optional< armnn::MemoryRequirementsGetMemoryRequirements ()
 
+ + + + + + +

+Additional Inherited Members

- Protected Attributes inherited from BaseWorkload< QuantizeQueueDescriptor >
QuantizeQueueDescriptor m_Data
 
const arm::pipe::ProfilingGuid m_Guid
 
+

Detailed Description

+
+

Definition at line 15 of file RefQuantizeWorkload.hpp.

+

Constructor & Destructor Documentation

+ +

◆ RefQuantizeWorkload()

+ +
+
+ + + + + + + + + + + + + + + + + + +
RefQuantizeWorkload (const QuantizeQueueDescriptordescriptor,
const WorkloadInfoinfo 
)
+
+ +

Definition at line 31 of file RefQuantizeWorkload.cpp.

+
32  : RefBaseWorkload(descriptor, info)
33  , m_NumElements(info.m_InputTensorInfos[0].GetNumElements())
34 {
35 }
RefBaseWorkload(const QuantizeQueueDescriptor &descriptor, const WorkloadInfo &info)
+ +
+
+
+

Member Function Documentation

+ +

◆ Execute()

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

Implements IWorkload.

+ +

Definition at line 37 of file RefQuantizeWorkload.cpp.

+ +

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

+ +

Referenced by RefQuantizeWorkload::ExecuteAsync().

+
38 {
40 }
+
void Execute() const override
+
std::vector< ITensorHandle * > m_Outputs
+
std::vector< ITensorHandle * > m_Inputs
+
+
+
+ +

◆ ExecuteAsync()

+ +
+
+ + + + + +
+ + + + + + + + +
void ExecuteAsync (ExecutionDataexecutionData)
+
+overridevirtual
+
+ +

Implements IWorkload.

+ +

Definition at line 42 of file RefQuantizeWorkload.cpp.

+ +

References RefQuantizeWorkload::Execute(), armnn::GetTensorInfo(), ExecutionData::m_Data, WorkingMemDescriptor::m_Inputs, and WorkingMemDescriptor::m_Outputs.

+
43 {
44  WorkingMemDescriptor* workingMemDescriptor = static_cast<WorkingMemDescriptor*>(executionData.m_Data);
45  Execute(workingMemDescriptor->m_Inputs, workingMemDescriptor->m_Outputs);
46 }
void Execute() const override
+
+
+
+
The documentation for this class was generated from the following files: +
+
+ + + + -- cgit v1.2.1