From f4019872c1134c6fcc1d6993e5746f55c1e79208 Mon Sep 17 00:00:00 2001 From: Nikhil Raj Date: Tue, 8 Mar 2022 20:01:38 +0000 Subject: IVGCVSW-6819 Fix the directory structure and broken link to latest docu Signed-off-by: Nikhil Raj Change-Id: I05b559d15faf92c76ff536719693b361316be4f3 --- ...classarmnn_1_1_ref_convolution3d_workload.xhtml | 334 +++++++++++++++++++++ 1 file changed, 334 insertions(+) create mode 100644 22.02/classarmnn_1_1_ref_convolution3d_workload.xhtml (limited to '22.02/classarmnn_1_1_ref_convolution3d_workload.xhtml') diff --git a/22.02/classarmnn_1_1_ref_convolution3d_workload.xhtml b/22.02/classarmnn_1_1_ref_convolution3d_workload.xhtml new file mode 100644 index 0000000000..73dec89685 --- /dev/null +++ b/22.02/classarmnn_1_1_ref_convolution3d_workload.xhtml @@ -0,0 +1,334 @@ + + + + + + + + + + + + + +ArmNN: RefConvolution3dWorkload Class Reference + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  22.02 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
RefConvolution3dWorkload Class Reference
+
+
+ +

#include <RefConvolution3dWorkload.hpp>

+
+Inheritance diagram for RefConvolution3dWorkload:
+
+
+ + +RefBaseWorkload< Convolution3dQueueDescriptor > +BaseWorkload< Convolution3dQueueDescriptor > +IWorkload + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Public Member Functions

 RefConvolution3dWorkload (const Convolution3dQueueDescriptor &descriptor, const WorkloadInfo &info)
 
void PostAllocationConfigure () override
 
void Execute () const override
 
void ExecuteAsync (WorkingMemDescriptor &workingMemDescriptor) override
 
- Public Member Functions inherited from RefBaseWorkload< Convolution3dQueueDescriptor >
 RefBaseWorkload (const Convolution3dQueueDescriptor &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< Convolution3dQueueDescriptor >
 BaseWorkload (const Convolution3dQueueDescriptor &descriptor, const WorkloadInfo &info)
 
void ExecuteAsync (WorkingMemDescriptor &workingMemDescriptor) override
 
void PostAllocationConfigure () override
 
const Convolution3dQueueDescriptorGetData () 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< Convolution3dQueueDescriptor >
Convolution3dQueueDescriptor m_Data
 
const profiling::ProfilingGuid m_Guid
 
+

Detailed Description

+
+

Definition at line 16 of file RefConvolution3dWorkload.hpp.

+

Constructor & Destructor Documentation

+ +

◆ RefConvolution3dWorkload()

+ +
+
+ + + + + +
+ + + + + + + + + + + + + + + + + + +
RefConvolution3dWorkload (const Convolution3dQueueDescriptordescriptor,
const WorkloadInfoinfo 
)
+
+explicit
+
+ +

Definition at line 15 of file RefConvolution3dWorkload.cpp.

+ +

References ARMNN_REPORT_PROFILING_WORKLOAD_DESC, Convolution3dDescriptor::m_BiasEnabled, WorkloadInfo::m_BiasTensorInfo, WorkloadInfo::m_InputTensorInfos, WorkloadInfo::m_OutputTensorInfos, QueueDescriptorWithParameters< LayerDescriptor >::m_Parameters, and WorkloadInfo::m_WeightsTensorInfo.

+
17  : RefBaseWorkload<Convolution3dQueueDescriptor>(descriptor, info)
18 {
19  WorkloadInfo detailsInfo;
20  detailsInfo.m_InputTensorInfos = info.m_InputTensorInfos;
21  detailsInfo.m_OutputTensorInfos = info.m_OutputTensorInfos;
22  detailsInfo.m_WeightsTensorInfo = armnn::Optional<armnn::TensorInfo>(info.m_InputTensorInfos[1]);
23  if (descriptor.m_Parameters.m_BiasEnabled)
24  {
25  detailsInfo.m_BiasTensorInfo = armnn::Optional<armnn::TensorInfo>(info.m_InputTensorInfos[2]);
26  }
27 
28  // Report Profiling Details
29  ARMNN_REPORT_PROFILING_WORKLOAD_DESC("RefConvolution3dWorkload_Construct",
30  descriptor.m_Parameters,
31  detailsInfo,
32  this->GetGuid());
33 }
+ +
#define ARMNN_REPORT_PROFILING_WORKLOAD_DESC(name, desc, infos, guid)
Definition: Profiling.hpp:227
+
+
+
+

Member Function Documentation

+ +

◆ Execute()

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

Implements IWorkload.

+ +

Definition at line 55 of file RefConvolution3dWorkload.cpp.

+ +

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

+ +

Referenced by RefConvolution3dWorkload::ExecuteAsync().

+
56 {
58 }
+ +
std::vector< ITensorHandle * > m_Outputs
+
std::vector< ITensorHandle * > m_Inputs
+
+
+
+ +

◆ ExecuteAsync()

+ +
+
+ + + + + +
+ + + + + + + + +
void ExecuteAsync (WorkingMemDescriptorworkingMemDescriptor)
+
+overridevirtual
+
+
+ +

◆ PostAllocationConfigure()

+ + +
The documentation for this class was generated from the following files: +
+
+ + + + -- cgit v1.2.1