From 03c7ff3f6188240baaeaeb405a357a0c58195fec Mon Sep 17 00:00:00 2001 From: Nikhil Raj Date: Tue, 22 Aug 2023 12:00:04 +0100 Subject: IVGCVSW-7702 Update Doxygen Docu for 23.08 Signed-off-by: Nikhil Raj Change-Id: I357a9f7e47614589327c1ac5d95b6224ff77103d --- latest/structarmnn_1_1_map_queue_descriptor.html | 212 +++++++++++++++++++++++ 1 file changed, 212 insertions(+) create mode 100644 latest/structarmnn_1_1_map_queue_descriptor.html (limited to 'latest/structarmnn_1_1_map_queue_descriptor.html') diff --git a/latest/structarmnn_1_1_map_queue_descriptor.html b/latest/structarmnn_1_1_map_queue_descriptor.html new file mode 100644 index 0000000000..b805c1f9ec --- /dev/null +++ b/latest/structarmnn_1_1_map_queue_descriptor.html @@ -0,0 +1,212 @@ + + + + + + + + +Arm NN: MapQueueDescriptor Struct Reference + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  23.08 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
MapQueueDescriptor Struct Reference
+
+
+ +

#include <WorkloadData.hpp>

+
+Inheritance diagram for MapQueueDescriptor:
+
+
+
+
[legend]
+
+Collaboration diagram for MapQueueDescriptor:
+
+
+
+
[legend]
+ + + + + + + + + + + + + + + + +

+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 76 of file WorkloadData.hpp.

+

Member Function Documentation

+ +

◆ Validate()

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

Definition at line 454 of file WorkloadData.cpp.

+
455 {
+
456  const std::string descriptorName{"MapQueueDescriptor"};
+
457 
+
458  ValidateNumInputs(workloadInfo, descriptorName, 1);
+
459  ValidateNumOutputs(workloadInfo, descriptorName, 0);
+
460 
+
461  for (unsigned int i = 0; i < m_Inputs.size(); ++i)
+
462  {
+
463  if (!m_Inputs[i])
+
464  {
+ +
466  fmt::format("{}: Invalid NULL input {}.", descriptorName, static_cast<int>(i)));
+
467  }
+
468  }
+
469 }
+
+

References QueueDescriptor::m_Inputs.

+ +
+
+
The documentation for this struct was generated from the following files: +
+
+ +
std::vector< ITensorHandle * > m_Inputs
+ + + + -- cgit v1.2.1