From 4840dfb7543d66652dc11c5ff39c8f5c1e2f9370 Mon Sep 17 00:00:00 2001 From: Ryan OShea Date: Tue, 25 Aug 2020 12:35:58 +0100 Subject: Updating Doxygen Documentation for 20.08 release Signed-off-by: Ryan OShea Change-Id: I605409f8720de5353feceb161b39f8a5f0598180 --- 20.08/structarmnn_1_1_mean_descriptor.xhtml | 292 ++++++++++++++++++++++++++++ 1 file changed, 292 insertions(+) create mode 100644 20.08/structarmnn_1_1_mean_descriptor.xhtml (limited to '20.08/structarmnn_1_1_mean_descriptor.xhtml') diff --git a/20.08/structarmnn_1_1_mean_descriptor.xhtml b/20.08/structarmnn_1_1_mean_descriptor.xhtml new file mode 100644 index 0000000000..db53b3f7ff --- /dev/null +++ b/20.08/structarmnn_1_1_mean_descriptor.xhtml @@ -0,0 +1,292 @@ + + + + + + + + + + + + + +ArmNN: MeanDescriptor Struct Reference + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  20.08 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
MeanDescriptor Struct Reference
+
+
+ +

A MeanDescriptor for the MeanLayer. + More...

+ +

#include <Descriptors.hpp>

+ + + + + + + + +

+Public Member Functions

 MeanDescriptor ()
 
 MeanDescriptor (const std::vector< unsigned int > &axis, bool keepDims)
 
bool operator== (const MeanDescriptor &rhs) const
 
+ + + + + + + +

+Public Attributes

std::vector< unsigned int > m_Axis
 Values for the dimensions to reduce. More...
 
bool m_KeepDims
 Enable/disable keep dimensions. If true, then the reduced dimensions that are of length 1 are kept. More...
 
+

Detailed Description

+

A MeanDescriptor for the MeanLayer.

+ +

Definition at line 934 of file Descriptors.hpp.

+

Constructor & Destructor Documentation

+ +

◆ MeanDescriptor() [1/2]

+ +
+
+ + + + + +
+ + + + + + + +
MeanDescriptor ()
+
+inline
+
+ +

Definition at line 936 of file Descriptors.hpp.

+
937  : m_Axis()
938  , m_KeepDims(false)
939  {}
std::vector< unsigned int > m_Axis
Values for the dimensions to reduce.
+
bool m_KeepDims
Enable/disable keep dimensions. If true, then the reduced dimensions that are of length 1 are kept...
+
+
+
+ +

◆ MeanDescriptor() [2/2]

+ +
+
+ + + + + +
+ + + + + + + + + + + + + + + + + + +
MeanDescriptor (const std::vector< unsigned int > & axis,
bool keepDims 
)
+
+inline
+
+ +

Definition at line 941 of file Descriptors.hpp.

+
942  : m_Axis(axis)
943  , m_KeepDims(keepDims)
944  {}
std::vector< unsigned int > m_Axis
Values for the dimensions to reduce.
+
bool m_KeepDims
Enable/disable keep dimensions. If true, then the reduced dimensions that are of length 1 are kept...
+
+
+
+

Member Function Documentation

+ +

◆ operator==()

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

Definition at line 946 of file Descriptors.hpp.

+ +

References MeanDescriptor::m_Axis, and MeanDescriptor::m_KeepDims.

+
947  {
948  return m_Axis == rhs.m_Axis && m_KeepDims == rhs.m_KeepDims;
949  }
std::vector< unsigned int > m_Axis
Values for the dimensions to reduce.
+
bool m_KeepDims
Enable/disable keep dimensions. If true, then the reduced dimensions that are of length 1 are kept...
+
+
+
+

Member Data Documentation

+ +

◆ m_Axis

+ + + +

◆ m_KeepDims

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