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 --- .../structarmnn_1_1_arg_min_max_descriptor.xhtml | 251 +++++++++++++++++++++ 1 file changed, 251 insertions(+) create mode 100644 Documentation/structarmnn_1_1_arg_min_max_descriptor.xhtml (limited to 'Documentation/structarmnn_1_1_arg_min_max_descriptor.xhtml') diff --git a/Documentation/structarmnn_1_1_arg_min_max_descriptor.xhtml b/Documentation/structarmnn_1_1_arg_min_max_descriptor.xhtml new file mode 100644 index 0000000000..e21af363a6 --- /dev/null +++ b/Documentation/structarmnn_1_1_arg_min_max_descriptor.xhtml @@ -0,0 +1,251 @@ + + + + + + + + + + + + + +ArmNN: ArgMinMaxDescriptor Struct Reference + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  20.02 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
ArgMinMaxDescriptor Struct Reference
+
+
+ +

An ArgMinMaxDescriptor for ArgMinMaxLayer. + More...

+ +

#include <Descriptors.hpp>

+ + + + + + +

+Public Member Functions

 ArgMinMaxDescriptor ()
 
bool operator== (const ArgMinMaxDescriptor &rhs) const
 
+ + + + + + + +

+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...
 
+

Detailed Description

+

An ArgMinMaxDescriptor for ArgMinMaxLayer.

+ +

Definition at line 43 of file Descriptors.hpp.

+

Constructor & Destructor Documentation

+ +

◆ ArgMinMaxDescriptor()

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

Definition at line 45 of file Descriptors.hpp.

+
47  , m_Axis(-1)
48  {}
ArgMinMaxFunction m_Function
Specify if the function is to find Min or Max.
Definition: Descriptors.hpp:56
+
int m_Axis
Axis to reduce across the input tensor.
Definition: Descriptors.hpp:58
+ +
+
+
+

Member Function Documentation

+ +

◆ operator==()

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

Definition at line 50 of file Descriptors.hpp.

+ +

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

+
51  {
52  return m_Function == rhs.m_Function && m_Axis == rhs.m_Axis;
53  }
ArgMinMaxFunction m_Function
Specify if the function is to find Min or Max.
Definition: Descriptors.hpp:56
+
int m_Axis
Axis to reduce across the input tensor.
Definition: Descriptors.hpp:58
+
+
+
+

Member Data Documentation

+ +

◆ m_Axis

+ + + +

◆ m_Function

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