From fd627ffaec8fd8801d980b4c91ee7c0607ab6aaf Mon Sep 17 00:00:00 2001 From: Jan Eilers Date: Thu, 25 Feb 2021 17:44:00 +0000 Subject: IVGCVSW-5687 Update Doxygen Docu * Update Doxygen Documentation for 21.02 release Signed-off-by: Jan Eilers Change-Id: I9ed2f9caab038836ea99d7b378d7899fe431a4e5 --- 21.02/structarmnn_1_1_reduce_descriptor.xhtml | 285 ++++++++++++++++++++++++++ 1 file changed, 285 insertions(+) create mode 100644 21.02/structarmnn_1_1_reduce_descriptor.xhtml (limited to '21.02/structarmnn_1_1_reduce_descriptor.xhtml') diff --git a/21.02/structarmnn_1_1_reduce_descriptor.xhtml b/21.02/structarmnn_1_1_reduce_descriptor.xhtml new file mode 100644 index 0000000000..0ef41ec4df --- /dev/null +++ b/21.02/structarmnn_1_1_reduce_descriptor.xhtml @@ -0,0 +1,285 @@ + + + + + + + + + + + + + +ArmNN: ReduceDescriptor Struct Reference + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  21.02 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
ReduceDescriptor Struct Reference
+
+
+ +

A ReduceDescriptor for the REDUCE operators. + More...

+ +

#include <Descriptors.hpp>

+
+Inheritance diagram for ReduceDescriptor:
+
+
+ + +BaseDescriptor + +
+ + + + + + +

+Public Member Functions

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

+Public Attributes

bool m_KeepDims
 if true then output shape has no change. More...
 
std::vector< uint32_t > m_vAxis
 The indices of the dimensions to reduce. More...
 
ReduceOperation m_ReduceOperation
 Specifies the reduction operation to execute. More...
 
+

Detailed Description

+

A ReduceDescriptor for the REDUCE operators.

+ +

Definition at line 1304 of file Descriptors.hpp.

+

Constructor & Destructor Documentation

+ +

◆ ReduceDescriptor()

+ +
+
+ + + + + +
+ + + + + + + +
ReduceDescriptor ()
+
+inline
+
+ +

Definition at line 1306 of file Descriptors.hpp.

+
1307  : m_KeepDims(false)
1308  , m_vAxis()
1310  {}
bool m_KeepDims
if true then output shape has no change.
+
ReduceOperation m_ReduceOperation
Specifies the reduction operation to execute.
+
std::vector< uint32_t > m_vAxis
The indices of the dimensions to reduce.
+ +
+
+
+

Member Function Documentation

+ +

◆ operator==()

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

Definition at line 1312 of file Descriptors.hpp.

+ +

References ReduceDescriptor::m_KeepDims, ReduceDescriptor::m_ReduceOperation, and ReduceDescriptor::m_vAxis.

+
1313  {
1314  return m_KeepDims == rhs.m_KeepDims &&
1315  m_vAxis == rhs.m_vAxis &&
1316  m_ReduceOperation == rhs.m_ReduceOperation;
1317  }
bool m_KeepDims
if true then output shape has no change.
+
ReduceOperation m_ReduceOperation
Specifies the reduction operation to execute.
+
std::vector< uint32_t > m_vAxis
The indices of the dimensions to reduce.
+
+
+
+

Member Data Documentation

+ +

◆ m_KeepDims

+ + + +

◆ m_ReduceOperation

+ + + +

◆ m_vAxis

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