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

A BatchNormalizationDescriptor for the BatchNormalizationLayer. + More...

+ +

#include <Descriptors.hpp>

+ + + + + + +

+Public Member Functions

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

+Public Attributes

float m_Eps
 Value to add to the variance. Used to avoid dividing by zero. More...
 
DataLayout m_DataLayout
 The data layout to be used (NCHW, NHWC). More...
 
+

Detailed Description

+

A BatchNormalizationDescriptor for the BatchNormalizationLayer.

+ +

Definition at line 610 of file Descriptors.hpp.

+

Constructor & Destructor Documentation

+ +

◆ BatchNormalizationDescriptor()

+ +
+
+ + + + + +
+ + + + + + + +
BatchNormalizationDescriptor ()
+
+inline
+
+ +

Definition at line 612 of file Descriptors.hpp.

+
613  : m_Eps(0.0001f)
615  {}
float m_Eps
Value to add to the variance. Used to avoid dividing by zero.
+
DataLayout m_DataLayout
The data layout to be used (NCHW, NHWC).
+ +
+
+
+

Member Function Documentation

+ +

◆ operator==()

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

Definition at line 617 of file Descriptors.hpp.

+ +

References BatchNormalizationDescriptor::m_DataLayout, and BatchNormalizationDescriptor::m_Eps.

+
618  {
619  return m_Eps == rhs.m_Eps && m_DataLayout == rhs.m_DataLayout;
620  }
float m_Eps
Value to add to the variance. Used to avoid dividing by zero.
+
DataLayout m_DataLayout
The data layout to be used (NCHW, NHWC).
+
+
+
+

Member Data Documentation

+ +

◆ m_DataLayout

+ + + +

◆ m_Eps

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