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

A L2NormalizationDescriptor for the L2NormalizationLayer. + More...

+ +

#include <Descriptors.hpp>

+ + + + + + +

+Public Member Functions

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

+Public Attributes

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

Detailed Description

+

A L2NormalizationDescriptor for the L2NormalizationLayer.

+ +

Definition at line 591 of file Descriptors.hpp.

+

Constructor & Destructor Documentation

+ +

◆ L2NormalizationDescriptor()

+ +
+
+ + + + + +
+ + + + + + + +
L2NormalizationDescriptor ()
+
+inline
+
+ +

Definition at line 593 of file Descriptors.hpp.

+
594  : m_Eps(1e-12f)
596  {}
float m_Eps
Used to avoid dividing by zero.
+
DataLayout m_DataLayout
The data layout to be used (NCHW, NHWC).
+ +
+
+
+

Member Function Documentation

+ +

◆ operator==()

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

Definition at line 598 of file Descriptors.hpp.

+ +

References L2NormalizationDescriptor::m_DataLayout, and L2NormalizationDescriptor::m_Eps.

+
599  {
600  return m_Eps == rhs.m_Eps && m_DataLayout == rhs.m_DataLayout;
601  }
float m_Eps
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