From de36e4a9c299028e792c3a5bd99ad0816d806077 Mon Sep 17 00:00:00 2001 From: Ryan OShea Date: Fri, 13 Mar 2020 16:26:19 +0000 Subject: IVGCVSW-3726 Upload ArmNN Doxygen files * Upload current ArmNN Doxygen files Signed-off-by: Ryan OShea Change-Id: I8989ed16ee40a99a4495b100bd009cf3e24a7285 --- ...ructarmnn_1_1_log_softmax_queue_descriptor.html | 187 +++++++++++++++++++++ 1 file changed, 187 insertions(+) create mode 100644 Documentation/structarmnn_1_1_log_softmax_queue_descriptor.html (limited to 'Documentation/structarmnn_1_1_log_softmax_queue_descriptor.html') diff --git a/Documentation/structarmnn_1_1_log_softmax_queue_descriptor.html b/Documentation/structarmnn_1_1_log_softmax_queue_descriptor.html new file mode 100644 index 0000000000..9a82e81cdb --- /dev/null +++ b/Documentation/structarmnn_1_1_log_softmax_queue_descriptor.html @@ -0,0 +1,187 @@ + + + + + + + +ArmNN: LogSoftmaxQueueDescriptor Struct Reference + + + + + + + + + + + + + + +
+
+ + + + + + +
+
ArmNN +  NotReleased +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
LogSoftmaxQueueDescriptor Struct Reference
+
+
+ +

#include <WorkloadData.hpp>

+
+Inheritance diagram for LogSoftmaxQueueDescriptor:
+
+
+ + +QueueDescriptorWithParameters< LogSoftmaxDescriptor > +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 QueueDescriptorWithParameters< LogSoftmaxDescriptor >
LogSoftmaxDescriptor m_Parameters
 
- Public Attributes inherited from QueueDescriptor
std::vector< ITensorHandle * > m_Inputs
 
std::vector< ITensorHandle * > m_Outputs
 
- Protected Member Functions inherited from QueueDescriptorWithParameters< LogSoftmaxDescriptor >
 ~QueueDescriptorWithParameters ()=default
 
 QueueDescriptorWithParameters ()=default
 
 QueueDescriptorWithParameters (QueueDescriptorWithParameters const &)=default
 
QueueDescriptorWithParametersoperator= (QueueDescriptorWithParameters const &)=default
 
- Protected Member Functions inherited from QueueDescriptor
 ~QueueDescriptor ()=default
 
 QueueDescriptor ()=default
 
 QueueDescriptor (QueueDescriptor const &)=default
 
QueueDescriptoroperator= (QueueDescriptor const &)=default
 
+

Detailed Description

+
+

Definition at line 321 of file WorkloadData.hpp.

+

Member Function Documentation

+ +

◆ Validate()

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

Definition at line 1501 of file WorkloadData.cpp.

+ +

References armnn::Float16, armnn::Float32, WorkloadInfo::m_InputTensorInfos, and WorkloadInfo::m_OutputTensorInfos.

+
1502 {
1503  const std::string descriptorName{"LogSoftmaxQueueDescriptor"};
1504 
1505  ValidateNumInputs(workloadInfo, descriptorName, 1);
1506  ValidateNumOutputs(workloadInfo, descriptorName, 1);
1507 
1508  const TensorInfo& inputTensorInfo = workloadInfo.m_InputTensorInfos[0];
1509  const TensorInfo& outputTensorInfo = workloadInfo.m_OutputTensorInfos[0];
1510 
1511  ValidateTensorShapesMatch(inputTensorInfo, outputTensorInfo, descriptorName, "input", "output");
1512 
1513  std::vector<DataType> supportedTypes =
1514  {
1517  };
1518 
1519  ValidateDataTypes(inputTensorInfo, supportedTypes, descriptorName);
1520  ValidateTensorDataTypesMatch(inputTensorInfo, outputTensorInfo, descriptorName, "input", "output");
1521 }
+
std::vector< TensorInfo > m_OutputTensorInfos
+ +
std::vector< TensorInfo > m_InputTensorInfos
+ +
+
+
+
The documentation for this struct was generated from the following files: +
+
+ + + + -- cgit v1.2.1