From 7bfd38a721360183f3392f9ab35db18a0dd7fef8 Mon Sep 17 00:00:00 2001 From: Nikhil Raj Date: Fri, 19 Aug 2022 15:23:36 +0100 Subject: Update Doxygen for 22.08 Release Signed-off-by: Nikhil Raj Change-Id: I4789fe868e0492839be1482e5cee3642ed90d756 --- 22.08/structarmnn_1_1_unmap_queue_descriptor.xhtml | 196 +++++++++++++++++++++ 1 file changed, 196 insertions(+) create mode 100644 22.08/structarmnn_1_1_unmap_queue_descriptor.xhtml (limited to '22.08/structarmnn_1_1_unmap_queue_descriptor.xhtml') diff --git a/22.08/structarmnn_1_1_unmap_queue_descriptor.xhtml b/22.08/structarmnn_1_1_unmap_queue_descriptor.xhtml new file mode 100644 index 0000000000..a50b490a80 --- /dev/null +++ b/22.08/structarmnn_1_1_unmap_queue_descriptor.xhtml @@ -0,0 +1,196 @@ + + + + + + + + + + + + + +ArmNN: UnmapQueueDescriptor Struct Reference + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  22.08 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
UnmapQueueDescriptor Struct Reference
+
+
+ +

#include <WorkloadData.hpp>

+
+Inheritance diagram for UnmapQueueDescriptor:
+
+
+ + +QueueDescriptor + +
+ + + + + + + + + + + + + + + + +

+Public Member Functions

void Validate (const WorkloadInfo &workloadInfo) const
 
- Public Member Functions inherited from QueueDescriptor
virtual ~QueueDescriptor ()=default
 
void ValidateTensorNumDimensions (const TensorInfo &tensor, std::string const &descName, unsigned int numDimensions, std::string const &tensorName) const
 
void ValidateTensorNumDimNumElem (const TensorInfo &tensorInfo, unsigned int numDimension, unsigned int numElements, std::string const &tensorName) const
 
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
 
bool m_AllowExpandedDims = false
 
- Protected Member Functions inherited from QueueDescriptor
 QueueDescriptor ()
 
 QueueDescriptor (QueueDescriptor const &)=default
 
QueueDescriptoroperator= (QueueDescriptor const &)=default
 
+

Detailed Description

+
+

Definition at line 81 of file WorkloadData.hpp.

+

Member Function Documentation

+ +

◆ Validate()

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

Definition at line 500 of file WorkloadData.cpp.

+ +

References QueueDescriptor::m_Inputs.

+
501 {
502  const std::string descriptorName{"UnmapQueueDescriptor"};
503 
504  ValidateNumInputs(workloadInfo, descriptorName, 1);
505  ValidateNumOutputs(workloadInfo, descriptorName, 0);
506 
507  for (unsigned int i = 0; i < m_Inputs.size(); ++i)
508  {
509  if (!m_Inputs[i])
510  {
512  fmt::format("{}: Invalid NULL input {}.", descriptorName, static_cast<int>(i)));
513  }
514  }
515 }
+
std::vector< ITensorHandle * > m_Inputs
+
+
+
+
The documentation for this struct was generated from the following files: +
+
+ + + + -- cgit v1.2.1