From 9aed8fb43441228343b925b42464a55042c47ca0 Mon Sep 17 00:00:00 2001 From: Nikhil Raj Date: Wed, 17 Nov 2021 13:16:45 +0000 Subject: IVGCVSW-6040 Update 21.11 Doxygen Documents Signed-off-by: Nikhil Raj Change-Id: Ia36ec98c4bebc27a69103911ea3409cd7db587a5 --- ...ructarmnn_1_1_l2_normalization_descriptor.xhtml | 260 +++++++++++++++++++++ 1 file changed, 260 insertions(+) create mode 100644 21.11/structarmnn_1_1_l2_normalization_descriptor.xhtml (limited to '21.11/structarmnn_1_1_l2_normalization_descriptor.xhtml') diff --git a/21.11/structarmnn_1_1_l2_normalization_descriptor.xhtml b/21.11/structarmnn_1_1_l2_normalization_descriptor.xhtml new file mode 100644 index 0000000000..ed0496d903 --- /dev/null +++ b/21.11/structarmnn_1_1_l2_normalization_descriptor.xhtml @@ -0,0 +1,260 @@ + + + + + + + + + + + + + +ArmNN: L2NormalizationDescriptor Struct Reference + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  21.11 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
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 682 of file Descriptors.hpp.

+

Constructor & Destructor Documentation

+ +

◆ L2NormalizationDescriptor()

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

Definition at line 684 of file Descriptors.hpp.

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

+ +

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

+
690  {
691  return m_Eps == rhs.m_Eps && m_DataLayout == rhs.m_DataLayout;
692  }
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