From d5d43d82c0137e08553e44345c609cdd1a7931c7 Mon Sep 17 00:00:00 2001 From: Nikhil Raj Date: Fri, 17 Jun 2022 13:24:58 +0100 Subject: Update Doxygen for 22.05 patch release * Pooling3D added to tfLite delegate * Available in tag 22.05.01 Signed-off-by: Nikhil Raj Change-Id: I8d605bba4e87d30baa2c6d7b338c78a4400dc021 --- 22.05.01/classarmnn_1_1_multi_typed_workload.xhtml | 228 +++++++++++++++++++++ 1 file changed, 228 insertions(+) create mode 100644 22.05.01/classarmnn_1_1_multi_typed_workload.xhtml (limited to '22.05.01/classarmnn_1_1_multi_typed_workload.xhtml') diff --git a/22.05.01/classarmnn_1_1_multi_typed_workload.xhtml b/22.05.01/classarmnn_1_1_multi_typed_workload.xhtml new file mode 100644 index 0000000000..0781361e6d --- /dev/null +++ b/22.05.01/classarmnn_1_1_multi_typed_workload.xhtml @@ -0,0 +1,228 @@ + + + + + + + + + + + + + +ArmNN: MultiTypedWorkload< QueueDescriptor, InputDataType, OutputDataType > Class Template Reference + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  22.05.01 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
MultiTypedWorkload< QueueDescriptor, InputDataType, OutputDataType > Class Template Reference
+
+
+ +

#include <Workload.hpp>

+
+Inheritance diagram for MultiTypedWorkload< QueueDescriptor, InputDataType, OutputDataType >:
+
+
+ + +BaseWorkload< QueueDescriptor > +IWorkload +ClConvertFp16ToFp32Workload +ClConvertFp32ToFp16Workload +NeonConvertBf16ToFp32Workload +NeonConvertFp16ToFp32Workload +NeonConvertFp32ToBf16Workload +NeonConvertFp32ToFp16Workload +RefConvertBf16ToFp32Workload +RefConvertFp16ToFp32Workload +RefConvertFp32ToBf16Workload +RefConvertFp32ToFp16Workload + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Public Member Functions

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

+Additional Inherited Members

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

Detailed Description

+

template<typename QueueDescriptor, armnn::DataType InputDataType, armnn::DataType OutputDataType>
+class armnn::MultiTypedWorkload< QueueDescriptor, InputDataType, OutputDataType >

+ + +

Definition at line 145 of file Workload.hpp.

+

Constructor & Destructor Documentation

+ +

◆ MultiTypedWorkload()

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

Definition at line 149 of file Workload.hpp.

+ +

References ARMNN_ASSERT_MSG, WorkloadInfo::m_InputTensorInfos, and WorkloadInfo::m_OutputTensorInfos.

+
150  : BaseWorkload<QueueDescriptor>(descriptor, info)
151  {
152  ARMNN_ASSERT_MSG(std::all_of(info.m_InputTensorInfos.begin(),
153  info.m_InputTensorInfos.end(),
154  [&](auto it){
155  return it.GetDataType() == InputDataType;
156  }),
157  "Trying to create workload with incorrect type");
158 
159  ARMNN_ASSERT_MSG(std::all_of(info.m_OutputTensorInfos.begin(),
160  info.m_OutputTensorInfos.end(),
161  [&](auto it){
162  return it.GetDataType() == OutputDataType;
163  }),
164  "Trying to create workload with incorrect type");
165  }
#define ARMNN_ASSERT_MSG(COND, MSG)
Definition: Assert.hpp:15
+ +
+
+
+
The documentation for this class was generated from the following file: +
+
+ + + + -- cgit v1.2.1