From 0e2bab81442ee6cc2b94e4f7881ed0c5c6af65e7 Mon Sep 17 00:00:00 2001 From: Jim Flynn Date: Thu, 19 Mar 2020 17:03:14 +0000 Subject: Creating gh-pages documentation for ArmNN Signed-off-by: Jim Flynn --- ...mnn_1_1_instance_normalization_descriptor.xhtml | 301 +++++++++++++++++++++ 1 file changed, 301 insertions(+) create mode 100644 Documentation/structarmnn_1_1_instance_normalization_descriptor.xhtml (limited to 'Documentation/structarmnn_1_1_instance_normalization_descriptor.xhtml') diff --git a/Documentation/structarmnn_1_1_instance_normalization_descriptor.xhtml b/Documentation/structarmnn_1_1_instance_normalization_descriptor.xhtml new file mode 100644 index 0000000000..d499d87fbc --- /dev/null +++ b/Documentation/structarmnn_1_1_instance_normalization_descriptor.xhtml @@ -0,0 +1,301 @@ + + + + + + + + + + + + + +ArmNN: InstanceNormalizationDescriptor Struct Reference + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  20.02 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
InstanceNormalizationDescriptor Struct Reference
+
+
+ +

An InstanceNormalizationDescriptor for InstanceNormalizationLayer. + More...

+ +

#include <Descriptors.hpp>

+ + + + + + +

+Public Member Functions

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

+Public Attributes

float m_Gamma
 Gamma, the scale scalar value applied for the normalized tensor. Defaults to 1.0. More...
 
float m_Beta
 Beta, the offset scalar value applied for the normalized tensor. Defaults to 1.0. More...
 
float m_Eps
 Epsilon, small scalar value added to variance to avoid dividing by zero. Defaults to 1e-12f. More...
 
DataLayout m_DataLayout
 The data layout to be used (NCHW, NHWC). More...
 
+

Detailed Description

+

Constructor & Destructor Documentation

+ +

◆ InstanceNormalizationDescriptor()

+ +
+
+ + + + + +
+ + + + + + + +
InstanceNormalizationDescriptor ()
+
+inline
+
+ +

Definition at line 631 of file Descriptors.hpp.

+
632  : m_Gamma(1.0f)
633  , m_Beta(0.0f)
634  , m_Eps(1e-12f)
636  {}
float m_Gamma
Gamma, the scale scalar value applied for the normalized tensor. Defaults to 1.0. ...
+
float m_Eps
Epsilon, small scalar value added to variance to avoid dividing by zero. Defaults to 1e-12f...
+
DataLayout m_DataLayout
The data layout to be used (NCHW, NHWC).
+
float m_Beta
Beta, the offset scalar value applied for the normalized tensor. Defaults to 1.0. ...
+ +
+
+
+

Member Function Documentation

+ +

◆ operator==()

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

Definition at line 638 of file Descriptors.hpp.

+ +

References InstanceNormalizationDescriptor::m_Beta, InstanceNormalizationDescriptor::m_DataLayout, InstanceNormalizationDescriptor::m_Eps, and InstanceNormalizationDescriptor::m_Gamma.

+
639  {
640  return m_Gamma == rhs.m_Gamma &&
641  m_Beta == rhs.m_Beta &&
642  m_Eps == rhs.m_Eps &&
643  m_DataLayout == rhs.m_DataLayout;
644  }
float m_Gamma
Gamma, the scale scalar value applied for the normalized tensor. Defaults to 1.0. ...
+
float m_Eps
Epsilon, small scalar value added to variance to avoid dividing by zero. Defaults to 1e-12f...
+
DataLayout m_DataLayout
The data layout to be used (NCHW, NHWC).
+
float m_Beta
Beta, the offset scalar value applied for the normalized tensor. Defaults to 1.0. ...
+
+
+
+

Member Data Documentation

+ +

◆ m_Beta

+ +
+
+ + + + +
float m_Beta
+
+ +

Beta, the offset scalar value applied for the normalized tensor. Defaults to 1.0.

+ +

Definition at line 649 of file Descriptors.hpp.

+ +

Referenced by Deserializer::GetNetworkOutputBindingInfo(), armnn::InstanceNorm(), InstanceNormalizationDescriptor::operator==(), and SerializerVisitor::VisitInstanceNormalizationLayer().

+ +
+
+ +

◆ m_DataLayout

+ +
+
+ + + + +
DataLayout m_DataLayout
+
+
+ +

◆ m_Eps

+ +
+
+ + + + +
float m_Eps
+
+ +

Epsilon, small scalar value added to variance to avoid dividing by zero. Defaults to 1e-12f.

+ +

Definition at line 651 of file Descriptors.hpp.

+ +

Referenced by Deserializer::GetNetworkOutputBindingInfo(), armnn::InstanceNorm(), InstanceNormalizationDescriptor::operator==(), and SerializerVisitor::VisitInstanceNormalizationLayer().

+ +
+
+ +

◆ m_Gamma

+ +
+
+ + + + +
float m_Gamma
+
+ +

Gamma, the scale scalar value applied for the normalized tensor. Defaults to 1.0.

+ +

Definition at line 647 of file Descriptors.hpp.

+ +

Referenced by BOOST_AUTO_TEST_CASE(), Deserializer::GetNetworkOutputBindingInfo(), armnn::InstanceNorm(), InstanceNormalizationDescriptor::operator==(), and SerializerVisitor::VisitInstanceNormalizationLayer().

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