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

A BatchNormalizationDescriptor for the BatchNormalizationLayer. + More...

+ +

#include <Descriptors.hpp>

+
+Inheritance diagram for BatchNormalizationDescriptor:
+
+
+ + +BaseDescriptor + +
+ + + + + + +

+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 626 of file Descriptors.hpp.

+

Constructor & Destructor Documentation

+ +

◆ BatchNormalizationDescriptor()

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

Definition at line 628 of file Descriptors.hpp.

+
629  : m_Eps(0.0001f)
631  {}
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 633 of file Descriptors.hpp.

+ +

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

+
634  {
635  return m_Eps == rhs.m_Eps && m_DataLayout == rhs.m_DataLayout;
636  }
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