From 96becb7e4f5f510344c3850278a706d63a564fc4 Mon Sep 17 00:00:00 2001 From: Jan Eilers Date: Tue, 16 Jun 2020 12:41:49 +0100 Subject: Revert "IVGCVSW-3726 Upload ArmNN Doxygen files" This reverts commit de36e4a9c299028e792c3a5bd99ad0816d806077. Signed-off-by: Jan Eilers Change-Id: Idbf20c12ea07583ca552d7cc7fb517fbadc73fff --- ...1_1_convert_fp16_to_fp32_queue_descriptor.xhtml | 190 --------------------- 1 file changed, 190 deletions(-) delete mode 100644 Documentation/structarmnn_1_1_convert_fp16_to_fp32_queue_descriptor.xhtml (limited to 'Documentation/structarmnn_1_1_convert_fp16_to_fp32_queue_descriptor.xhtml') diff --git a/Documentation/structarmnn_1_1_convert_fp16_to_fp32_queue_descriptor.xhtml b/Documentation/structarmnn_1_1_convert_fp16_to_fp32_queue_descriptor.xhtml deleted file mode 100644 index fa308fe5a9..0000000000 --- a/Documentation/structarmnn_1_1_convert_fp16_to_fp32_queue_descriptor.xhtml +++ /dev/null @@ -1,190 +0,0 @@ - - - - - - - - - - - - - -ArmNN: ConvertFp16ToFp32QueueDescriptor Struct Reference - - - - - - - - - - - - - - - - -
-
- - - - ArmNN - - - -
-
-  20.02 -
-
-
- - - - - - - -
-
- -
-
-
- -
- -
-
- - -
- -
- -
- -
-
ConvertFp16ToFp32QueueDescriptor Struct Reference
-
-
- -

#include <WorkloadData.hpp>

-
-Inheritance diagram for ConvertFp16ToFp32QueueDescriptor:
-
-
- - -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
 
- - - - - - - - - - - - - - - -

-Additional Inherited Members

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

Detailed Description

-
-

Definition at line 410 of file WorkloadData.hpp.

-

Member Function Documentation

- -

◆ Validate()

- -
-
- - - - - - - - -
void Validate (const WorkloadInfoworkloadInfo) const
-
- -

Definition at line 2042 of file WorkloadData.cpp.

- -

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

-
2043 {
2044  const std::string descriptorName{"ConvertFp16ToFp32QueueDescriptor"};
2045 
2046  ValidateNumInputs(workloadInfo, descriptorName, 1);
2047  ValidateNumOutputs(workloadInfo, descriptorName, 1);
2048 
2049  const TensorInfo& inputTensorInfo = workloadInfo.m_InputTensorInfos[0];
2050  const TensorInfo& outputTensorInfo = workloadInfo.m_OutputTensorInfos[0];
2051 
2052  if (inputTensorInfo.GetDataType() != DataType::Float16)
2053  {
2054  throw InvalidArgumentException(descriptorName + ": Input tensor type must be Float16.");
2055  }
2056 
2057  if (outputTensorInfo.GetDataType() != DataType::Float32)
2058  {
2059  throw InvalidArgumentException(descriptorName + ": Output tensor type must be Float32.");
2060  }
2061 
2062  ValidateTensorShapesMatch(inputTensorInfo, outputTensorInfo, descriptorName, "input", "output");
2063 }
-
std::vector< TensorInfo > m_InputTensorInfos
-
DataType GetDataType() const
Definition: Tensor.hpp:95
- -
std::vector< TensorInfo > m_OutputTensorInfos
- - -
-
-
-
The documentation for this struct was generated from the following files: -
-
- - - - -- cgit v1.2.1