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 --- .../structarmnn_1_1_greater_queue_descriptor.xhtml | 194 +++++++++++++++++++++ 1 file changed, 194 insertions(+) create mode 100644 21.02/structarmnn_1_1_greater_queue_descriptor.xhtml (limited to '21.02/structarmnn_1_1_greater_queue_descriptor.xhtml') diff --git a/21.02/structarmnn_1_1_greater_queue_descriptor.xhtml b/21.02/structarmnn_1_1_greater_queue_descriptor.xhtml new file mode 100644 index 0000000000..6b84f80e0f --- /dev/null +++ b/21.02/structarmnn_1_1_greater_queue_descriptor.xhtml @@ -0,0 +1,194 @@ + + + + + + + + + + + + + +ArmNN: GreaterQueueDescriptor Struct Reference + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  21.02 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
GreaterQueueDescriptor Struct Reference
+
+
+ +

#include <WorkloadData.hpp>

+
+Inheritance diagram for GreaterQueueDescriptor:
+
+
+ + +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 476 of file WorkloadData.hpp.

+

Member Function Documentation

+ +

◆ Validate()

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

Definition at line 2556 of file WorkloadData.cpp.

+ +

References armnn::Boolean, TensorInfo::GetDataType(), WorkloadInfo::m_InputTensorInfos, and WorkloadInfo::m_OutputTensorInfos.

+
2557 {
2558  const std::string descriptorName{"GreaterQueueDescriptor"};
2559 
2560  ValidateNumInputs(workloadInfo, descriptorName, 2);
2561  ValidateNumOutputs(workloadInfo, descriptorName, 1);
2562 
2563  const TensorInfo& inputTensorInfo0 = workloadInfo.m_InputTensorInfos[0];
2564  const TensorInfo& inputTensorInfo1 = workloadInfo.m_InputTensorInfos[1];
2565  const TensorInfo& outputTensorInfo = workloadInfo.m_OutputTensorInfos[0];
2566 
2567  ValidateBroadcastTensorShapesMatch(inputTensorInfo0,
2568  inputTensorInfo1,
2569  outputTensorInfo,
2570  descriptorName,
2571  "input_0",
2572  "input_1");
2573 
2574  if (outputTensorInfo.GetDataType() != DataType::Boolean)
2575  {
2576  throw InvalidArgumentException(descriptorName + ": Output tensor type must be Boolean.");
2577  }
2578 }
+ +
std::vector< TensorInfo > m_InputTensorInfos
+
DataType GetDataType() const
Definition: Tensor.hpp:194
+
std::vector< TensorInfo > m_OutputTensorInfos
+ +
+
+
+
The documentation for this struct was generated from the following files: +
+
+ + + + -- cgit v1.2.1