From f86be93b7492b381370cae7bf71eca8572a0cbae Mon Sep 17 00:00:00 2001 From: Matthew Sloyan Date: Tue, 24 Aug 2021 16:27:15 +0100 Subject: IVGCVSW-5924 Update 21.08 Doxygen Documents * Also updated latest symlink. Signed-off-by: Matthew Sloyan Change-Id: If9b4e0e52464abdf797b9eb858ae19bcc64c2aea --- 21.08/structarmnn_1_1_unmap_queue_descriptor.xhtml | 190 +++++++++++++++++++++ 1 file changed, 190 insertions(+) create mode 100644 21.08/structarmnn_1_1_unmap_queue_descriptor.xhtml (limited to '21.08/structarmnn_1_1_unmap_queue_descriptor.xhtml') diff --git a/21.08/structarmnn_1_1_unmap_queue_descriptor.xhtml b/21.08/structarmnn_1_1_unmap_queue_descriptor.xhtml new file mode 100644 index 0000000000..3b2b518692 --- /dev/null +++ b/21.08/structarmnn_1_1_unmap_queue_descriptor.xhtml @@ -0,0 +1,190 @@ + + + + + + + + + + + + + +ArmNN: UnmapQueueDescriptor Struct Reference + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  21.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
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 71 of file WorkloadData.hpp.

+

Member Function Documentation

+ +

◆ Validate()

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

Definition at line 478 of file WorkloadData.cpp.

+ +

References QueueDescriptor::m_Inputs.

+
479 {
480  const std::string descriptorName{"UnmapQueueDescriptor"};
481 
482  ValidateNumInputs(workloadInfo, descriptorName, 1);
483  ValidateNumOutputs(workloadInfo, descriptorName, 0);
484 
485  for (unsigned int i = 0; i < m_Inputs.size(); ++i)
486  {
487  if (!m_Inputs[i])
488  {
490  fmt::format("{}: Invalid NULL input {}.", descriptorName, static_cast<int>(i)));
491  }
492  }
493 }
+
std::vector< ITensorHandle * > m_Inputs
+
+
+
+
The documentation for this struct was generated from the following files: +
+
+ + + + -- cgit v1.2.1