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

A L2NormalizationDescriptor for the L2NormalizationLayer. + More...

+ +

#include <Descriptors.hpp>

+
+Inheritance diagram for L2NormalizationDescriptor:
+
+
+ + +BaseDescriptor + +
+ + + + + + +

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

+

Constructor & Destructor Documentation

+ +

◆ L2NormalizationDescriptor()

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

Definition at line 609 of file Descriptors.hpp.

+
610  : m_Eps(1e-12f)
612  {}
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 614 of file Descriptors.hpp.

+ +

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

+
615  {
616  return m_Eps == rhs.m_Eps && m_DataLayout == rhs.m_DataLayout;
617  }
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