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_tosa_ref_base_workload.xhtml | 335 ++++++++++++++++++++++ 1 file changed, 335 insertions(+) create mode 100644 22.11/classarmnn_1_1_tosa_ref_base_workload.xhtml (limited to '22.11/classarmnn_1_1_tosa_ref_base_workload.xhtml') diff --git a/22.11/classarmnn_1_1_tosa_ref_base_workload.xhtml b/22.11/classarmnn_1_1_tosa_ref_base_workload.xhtml new file mode 100644 index 0000000000..c9e5459efe --- /dev/null +++ b/22.11/classarmnn_1_1_tosa_ref_base_workload.xhtml @@ -0,0 +1,335 @@ + + + + + + + + + + + + + +ArmNN: TosaRefBaseWorkload< QueueDescriptor > Class Template Reference + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  22.11 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
TosaRefBaseWorkload< QueueDescriptor > Class Template Reference
+
+
+ +

#include <TosaRefBaseWorkload.hpp>

+
+Inheritance diagram for TosaRefBaseWorkload< QueueDescriptor >:
+
+
+ + +BaseWorkload< QueueDescriptor > +IWorkload + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Public Member Functions

 TosaRefBaseWorkload (const QueueDescriptor &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< QueueDescriptor >
 BaseWorkload (const QueueDescriptor &descriptor, const WorkloadInfo &info)
 
void ExecuteAsync (ExecutionData &executionData) override
 
void PostAllocationConfigure () override
 
const QueueDescriptorGetData () const
 
arm::pipe::ProfilingGuid GetGuid () const final
 
- Public Member Functions inherited from IWorkload
virtual ~IWorkload ()
 
virtual void Execute () const =0
 
virtual void RegisterDebugCallback (const DebugCallbackFunction &)
 
virtual armnn::Optional< armnn::MemoryRequirementsGetMemoryRequirements ()
 
+ + + + + + +

+Additional Inherited Members

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

Detailed Description

+

template<typename QueueDescriptor>
+class armnn::TosaRefBaseWorkload< QueueDescriptor >

+ + +

Definition at line 14 of file TosaRefBaseWorkload.hpp.

+

Constructor & Destructor Documentation

+ +

◆ TosaRefBaseWorkload()

+ +
+
+ + + + + +
+ + + + + + + + + + + + + + + + + + +
TosaRefBaseWorkload (const QueueDescriptordescriptor,
const WorkloadInfoinfo 
)
+
+inline
+
+ +

Definition at line 17 of file TosaRefBaseWorkload.hpp.

+
18  : BaseWorkload<QueueDescriptor>(descriptor, info)
19  {}
+
+
+
+

Member Function Documentation

+ +

◆ ReplaceInputTensorHandle()

+ +
+
+ + + + + +
+ + + + + + + + + + + + + + + + + + +
void ReplaceInputTensorHandle (ITensorHandletensorHandle,
unsigned int slot 
)
+
+inlineoverridevirtual
+
+ +

Reimplemented from BaseWorkload< QueueDescriptor >.

+ +

Definition at line 27 of file TosaRefBaseWorkload.hpp.

+ +

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

+
28  {
29  this->m_Data.m_Inputs[slot] = tensorHandle;
30  }
QueueDescriptor m_Data
Definition: Workload.hpp:83
+
std::vector< ITensorHandle * > m_Inputs
+
+
+
+ +

◆ ReplaceOutputTensorHandle()

+ +
+
+ + + + + +
+ + + + + + + + + + + + + + + + + + +
void ReplaceOutputTensorHandle (ITensorHandletensorHandle,
unsigned int slot 
)
+
+inlineoverridevirtual
+
+ +

Reimplemented from BaseWorkload< QueueDescriptor >.

+ +

Definition at line 33 of file TosaRefBaseWorkload.hpp.

+ +

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

+
34  {
35  this->m_Data.m_Outputs[slot] = tensorHandle;
36  }
QueueDescriptor m_Data
Definition: Workload.hpp:83
+
std::vector< ITensorHandle * > m_Outputs
+
+
+
+ +

◆ SupportsTensorHandleReplacement()

+ +
+
+ + + + + +
+ + + + + + + +
virtual bool SupportsTensorHandleReplacement () const
+
+inlineoverridevirtual
+
+ +

Reimplemented from BaseWorkload< QueueDescriptor >.

+ +

Definition at line 21 of file TosaRefBaseWorkload.hpp.

+
22  {
23  return true;
24  }
+
+
+
The documentation for this class was generated from the following file: +
+
+ + + + -- cgit v1.2.1