From 8d2ca734165a068478df7cffa46185680b05cd20 Mon Sep 17 00:00:00 2001 From: Nikhil Raj Date: Fri, 24 Feb 2023 10:28:19 +0000 Subject: Update Doxygen docu for 23.02 Signed-off-by: Nikhil Raj Change-Id: Ie6c19a27d50fefab2796b2b5875374e81f5bf971 --- 23.02/structarmnn_1_1_arg_min_max_descriptor.xhtml | 291 +++++++++++++++++++++ 1 file changed, 291 insertions(+) create mode 100644 23.02/structarmnn_1_1_arg_min_max_descriptor.xhtml (limited to '23.02/structarmnn_1_1_arg_min_max_descriptor.xhtml') diff --git a/23.02/structarmnn_1_1_arg_min_max_descriptor.xhtml b/23.02/structarmnn_1_1_arg_min_max_descriptor.xhtml new file mode 100644 index 0000000000..c5189acd48 --- /dev/null +++ b/23.02/structarmnn_1_1_arg_min_max_descriptor.xhtml @@ -0,0 +1,291 @@ + + + + + + + + + + + + + +ArmNN: ArgMinMaxDescriptor Struct Reference + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  23.02 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
ArgMinMaxDescriptor Struct Reference
+
+
+ +

An ArgMinMaxDescriptor for ArgMinMaxLayer. + More...

+ +

#include <Descriptors.hpp>

+
+Inheritance diagram for ArgMinMaxDescriptor:
+
+
+ + +BaseDescriptor + +
+ + + + + + + + + + + +

+Public Member Functions

 ArgMinMaxDescriptor ()
 
bool operator== (const ArgMinMaxDescriptor &rhs) const
 
- Public Member Functions inherited from BaseDescriptor
virtual bool IsNull () const
 
virtual ~BaseDescriptor ()=default
 
+ + + + + + + + + + +

+Public Attributes

ArgMinMaxFunction m_Function
 Specify if the function is to find Min or Max. More...
 
int m_Axis
 Axis to reduce across the input tensor. More...
 
armnn::DataType m_Output_Type
 Deprecated and will be removed in future release. More...
 
+

Detailed Description

+

An ArgMinMaxDescriptor for ArgMinMaxLayer.

+ +

Definition at line 67 of file Descriptors.hpp.

+

Constructor & Destructor Documentation

+ +

◆ ArgMinMaxDescriptor()

+ +
+
+ + + + + +
+ + + + + + + +
ArgMinMaxDescriptor ()
+
+inline
+
+ +

Definition at line 69 of file Descriptors.hpp.

+
71  , m_Axis(-1)
73  {}
+
ArgMinMaxFunction m_Function
Specify if the function is to find Min or Max.
Definition: Descriptors.hpp:81
+
int m_Axis
Axis to reduce across the input tensor.
Definition: Descriptors.hpp:83
+
armnn::DataType m_Output_Type
Deprecated and will be removed in future release.
Definition: Descriptors.hpp:85
+ +
+
+
+

Member Function Documentation

+ +

◆ operator==()

+ +
+
+ + + + + +
+ + + + + + + + +
bool operator== (const ArgMinMaxDescriptorrhs) const
+
+inline
+
+ +

Definition at line 75 of file Descriptors.hpp.

+ +

References ArgMinMaxDescriptor::m_Axis, ArgMinMaxDescriptor::m_Function, and ArgMinMaxDescriptor::m_Output_Type.

+
76  {
77  return m_Function == rhs.m_Function && m_Axis == rhs.m_Axis && m_Output_Type == rhs.m_Output_Type;
78  }
ArgMinMaxFunction m_Function
Specify if the function is to find Min or Max.
Definition: Descriptors.hpp:81
+
int m_Axis
Axis to reduce across the input tensor.
Definition: Descriptors.hpp:83
+
armnn::DataType m_Output_Type
Deprecated and will be removed in future release.
Definition: Descriptors.hpp:85
+
+
+
+

Member Data Documentation

+ +

◆ m_Axis

+ + + +

◆ m_Function

+ + + +

◆ m_Output_Type

+ +
+
+ + + + +
armnn::DataType m_Output_Type
+
+ +

Deprecated and will be removed in future release.

+ +

Definition at line 85 of file Descriptors.hpp.

+ +

Referenced by ArgMinMaxDescriptor::operator==().

+ +
+
+
The documentation for this struct was generated from the following file: +
+
+ + + + -- cgit v1.2.1