From fd627ffaec8fd8801d980b4c91ee7c0607ab6aaf Mon Sep 17 00:00:00 2001 From: Jan Eilers Date: Thu, 25 Feb 2021 17:44:00 +0000 Subject: IVGCVSW-5687 Update Doxygen Docu * Update Doxygen Documentation for 21.02 release Signed-off-by: Jan Eilers Change-Id: I9ed2f9caab038836ea99d7b378d7899fe431a4e5 --- 21.02/structarmnn_1_1_prelu_queue_descriptor.xhtml | 197 +++++++++++++++++++++ 1 file changed, 197 insertions(+) create mode 100644 21.02/structarmnn_1_1_prelu_queue_descriptor.xhtml (limited to '21.02/structarmnn_1_1_prelu_queue_descriptor.xhtml') diff --git a/21.02/structarmnn_1_1_prelu_queue_descriptor.xhtml b/21.02/structarmnn_1_1_prelu_queue_descriptor.xhtml new file mode 100644 index 0000000000..fb2347850c --- /dev/null +++ b/21.02/structarmnn_1_1_prelu_queue_descriptor.xhtml @@ -0,0 +1,197 @@ + + + + + + + + + + + + + +ArmNN: PreluQueueDescriptor Struct Reference + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  21.02 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
PreluQueueDescriptor Struct Reference
+
+
+ +

#include <WorkloadData.hpp>

+
+Inheritance diagram for PreluQueueDescriptor:
+
+
+ + +QueueDescriptor + +
+ + + + + + + + + + +

+Public Member Functions

void Validate (const WorkloadInfo &workloadInfo) const
 
- Public Member Functions inherited from QueueDescriptor
void ValidateInputsOutputs (const std::string &descName, unsigned int numExpectedIn, unsigned int numExpectedOut) const
 
template<typename T >
const T * GetAdditionalInformation () const
 
+ + + + + + + + + + + + + + + + + +

+Additional Inherited Members

- Public Attributes inherited from QueueDescriptor
std::vector< ITensorHandle * > m_Inputs
 
std::vector< ITensorHandle * > m_Outputs
 
void * m_AdditionalInfoObject
 
- Protected Member Functions inherited from QueueDescriptor
 ~QueueDescriptor ()=default
 
 QueueDescriptor ()
 
 QueueDescriptor (QueueDescriptor const &)=default
 
QueueDescriptoroperator= (QueueDescriptor const &)=default
 
+

Detailed Description

+
+

Definition at line 529 of file WorkloadData.hpp.

+

Member Function Documentation

+ +

◆ Validate()

+ +
+
+ + + + + + + + +
void Validate (const WorkloadInfoworkloadInfo) const
+
+ +

Definition at line 2798 of file WorkloadData.cpp.

+ +

References armnn::BFloat16, armnn::Float16, armnn::Float32, WorkloadInfo::m_InputTensorInfos, WorkloadInfo::m_OutputTensorInfos, armnn::QAsymmS8, armnn::QAsymmU8, and armnn::QSymmS16.

+
2799 {
2800  const std::string& descriptorName{"PreluQueueDescriptor"};
2801 
2802  ValidateNumInputs(workloadInfo, descriptorName, 2);
2803  ValidateNumOutputs(workloadInfo, descriptorName, 1);
2804 
2805  const TensorInfo& inputTensorInfo = workloadInfo.m_InputTensorInfos[0];
2806  const TensorInfo& alphaTensorInfo = workloadInfo.m_InputTensorInfos[1];
2807  const TensorInfo& outputTensorInfo = workloadInfo.m_OutputTensorInfos[0];
2808 
2809  std::vector<DataType> supportedTypes
2810  {
2817  };
2818 
2819  ValidateDataTypes(inputTensorInfo, supportedTypes, descriptorName);
2820  ValidateDataTypes(alphaTensorInfo, supportedTypes, descriptorName);
2821 
2822  ValidateDataTypes(outputTensorInfo, supportedTypes, descriptorName);
2823 
2824  ValidateTensorDataTypesMatch(inputTensorInfo, alphaTensorInfo, descriptorName, "input", "alpha");
2825  ValidateTensorDataTypesMatch(inputTensorInfo, outputTensorInfo, descriptorName, "input", "ouptut");
2826 
2827  ValidateBroadcastTensorShapesMatch(inputTensorInfo,
2828  alphaTensorInfo,
2829  outputTensorInfo,
2830  descriptorName,
2831  "input",
2832  "alpha");
2833 }
+ + +
std::vector< TensorInfo > m_InputTensorInfos
+ + +
std::vector< TensorInfo > m_OutputTensorInfos
+ + +
+
+
+
The documentation for this struct was generated from the following files: +
+
+ + + + -- cgit v1.2.1