ArmNN
 22.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 Member Functions inherited from BaseDescriptor
virtual bool IsNull () const
 
virtual ~BaseDescriptor ()=default
 

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

Constructor & Destructor Documentation

◆ BatchNormalizationDescriptor()

Definition at line 790 of file Descriptors.hpp.

791  : m_Eps(0.0001f)
793  {}
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 BatchNormalizationDescriptor rhs) const
inline

Definition at line 795 of file Descriptors.hpp.

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

796  {
797  return m_Eps == rhs.m_Eps && m_DataLayout == rhs.m_DataLayout;
798  }
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: