From 6940dd720ebb6b3d1df8ca203ab696daefe58189 Mon Sep 17 00:00:00 2001 From: Jim Flynn Date: Fri, 20 Mar 2020 12:25:56 +0000 Subject: renamed Documentation folder 20.02 and added .nojekyll file Signed-off-by: Jim Flynn --- 20.02/structarmnn_1_1_mean_descriptor.xhtml | 292 ++++++++++++++++++++++++++++ 1 file changed, 292 insertions(+) create mode 100644 20.02/structarmnn_1_1_mean_descriptor.xhtml (limited to '20.02/structarmnn_1_1_mean_descriptor.xhtml') diff --git a/20.02/structarmnn_1_1_mean_descriptor.xhtml b/20.02/structarmnn_1_1_mean_descriptor.xhtml new file mode 100644 index 0000000000..9021548456 --- /dev/null +++ b/20.02/structarmnn_1_1_mean_descriptor.xhtml @@ -0,0 +1,292 @@ + + + + + + + + + + + + + +ArmNN: MeanDescriptor Struct Reference + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  20.02 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
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 877 of file Descriptors.hpp.

+

Constructor & Destructor Documentation

+ +

◆ MeanDescriptor() [1/2]

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

Definition at line 879 of file Descriptors.hpp.

+
880  : m_Axis()
881  , m_KeepDims(false)
882  {}
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 884 of file Descriptors.hpp.

+
885  : m_Axis(axis)
886  , m_KeepDims(keepDims)
887  {}
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 889 of file Descriptors.hpp.

+ +

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

+
890  {
891  return m_Axis == rhs.m_Axis && m_KeepDims == rhs.m_KeepDims;
892  }
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