ArmNN
 20.05
BatchNormalizationDescriptor Struct Reference

A BatchNormalizationDescriptor for the BatchNormalizationLayer. More...

#include <Descriptors.hpp>

Public Member Functions

 BatchNormalizationDescriptor ()
 
bool operator== (const BatchNormalizationDescriptor &rhs) const
 

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

621  : m_Eps(0.0001f)
623  {}
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 625 of file Descriptors.hpp.

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

626  {
627  return m_Eps == rhs.m_Eps && m_DataLayout == rhs.m_DataLayout;
628  }
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: