ArmNN
 21.05
DepthwiseConvolution2dDescriptor Struct Reference

A DepthwiseConvolution2dDescriptor for the DepthwiseConvolution2dLayer. More...

#include <Descriptors.hpp>

Inheritance diagram for DepthwiseConvolution2dDescriptor:
BaseDescriptor

Public Member Functions

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

Public Attributes

uint32_t m_PadLeft
 Padding left value in the width dimension. More...
 
uint32_t m_PadRight
 Padding right value in the width dimension. More...
 
uint32_t m_PadTop
 Padding top value in the height dimension. More...
 
uint32_t m_PadBottom
 Padding bottom value in the height dimension. More...
 
uint32_t m_StrideX
 Stride value when proceeding through input for the width dimension. More...
 
uint32_t m_StrideY
 Stride value when proceeding through input for the height dimension. More...
 
uint32_t m_DilationX
 Dilation factor value for width dimension. More...
 
uint32_t m_DilationY
 Dilation factor value for height dimension. More...
 
bool m_BiasEnabled
 Enable/disable bias. More...
 
DataLayout m_DataLayout
 The data layout to be used (NCHW, NHWC). More...
 

Detailed Description

Constructor & Destructor Documentation

◆ DepthwiseConvolution2dDescriptor()

Definition at line 470 of file Descriptors.hpp.

471  : m_PadLeft(0)
472  , m_PadRight(0)
473  , m_PadTop(0)
474  , m_PadBottom(0)
475  , m_StrideX(1)
476  , m_StrideY(1)
477  , m_DilationX(1)
478  , m_DilationY(1)
479  , m_BiasEnabled(false)
481  {}
bool m_BiasEnabled
Enable/disable bias.
uint32_t m_PadBottom
Padding bottom value in the height dimension.
DataLayout m_DataLayout
The data layout to be used (NCHW, NHWC).
uint32_t m_PadLeft
Padding left value in the width dimension.
uint32_t m_DilationY
Dilation factor value for height dimension.
uint32_t m_StrideX
Stride value when proceeding through input for the width dimension.
uint32_t m_DilationX
Dilation factor value for width dimension.
uint32_t m_PadTop
Padding top value in the height dimension.
uint32_t m_StrideY
Stride value when proceeding through input for the height dimension.
uint32_t m_PadRight
Padding right value in the width dimension.

Member Function Documentation

◆ operator==()

bool operator== ( const DepthwiseConvolution2dDescriptor rhs) const
inline

Definition at line 483 of file Descriptors.hpp.

References DepthwiseConvolution2dDescriptor::m_BiasEnabled, DepthwiseConvolution2dDescriptor::m_DataLayout, DepthwiseConvolution2dDescriptor::m_DilationX, DepthwiseConvolution2dDescriptor::m_DilationY, DepthwiseConvolution2dDescriptor::m_PadBottom, DepthwiseConvolution2dDescriptor::m_PadLeft, DepthwiseConvolution2dDescriptor::m_PadRight, DepthwiseConvolution2dDescriptor::m_PadTop, DepthwiseConvolution2dDescriptor::m_StrideX, and DepthwiseConvolution2dDescriptor::m_StrideY.

484  {
485  return m_PadLeft == rhs.m_PadLeft &&
486  m_PadRight == rhs.m_PadRight &&
487  m_PadTop == rhs.m_PadTop &&
488  m_PadBottom == rhs.m_PadBottom &&
489  m_StrideX == rhs.m_StrideX &&
490  m_StrideY == rhs.m_StrideY &&
491  m_DilationX == rhs.m_DilationX &&
492  m_DilationY == rhs.m_DilationY &&
493  m_BiasEnabled == rhs.m_BiasEnabled &&
494  m_DataLayout == rhs.m_DataLayout;
495  }
bool m_BiasEnabled
Enable/disable bias.
uint32_t m_PadBottom
Padding bottom value in the height dimension.
DataLayout m_DataLayout
The data layout to be used (NCHW, NHWC).
uint32_t m_PadLeft
Padding left value in the width dimension.
uint32_t m_DilationY
Dilation factor value for height dimension.
uint32_t m_StrideX
Stride value when proceeding through input for the width dimension.
uint32_t m_DilationX
Dilation factor value for width dimension.
uint32_t m_PadTop
Padding top value in the height dimension.
uint32_t m_StrideY
Stride value when proceeding through input for the height dimension.
uint32_t m_PadRight
Padding right value in the width dimension.

Member Data Documentation

◆ m_BiasEnabled

◆ m_DataLayout

◆ m_DilationX

◆ m_DilationY

◆ m_PadBottom

◆ m_PadLeft

◆ m_PadRight

◆ m_PadTop

◆ m_StrideX

◆ m_StrideY


The documentation for this struct was generated from the following file: