ArmNN
 21.02
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 462 of file Descriptors.hpp.

463  : m_PadLeft(0)
464  , m_PadRight(0)
465  , m_PadTop(0)
466  , m_PadBottom(0)
467  , m_StrideX(1)
468  , m_StrideY(1)
469  , m_DilationX(1)
470  , m_DilationY(1)
471  , m_BiasEnabled(false)
473  {}
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 475 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.

476  {
477  return m_PadLeft == rhs.m_PadLeft &&
478  m_PadRight == rhs.m_PadRight &&
479  m_PadTop == rhs.m_PadTop &&
480  m_PadBottom == rhs.m_PadBottom &&
481  m_StrideX == rhs.m_StrideX &&
482  m_StrideY == rhs.m_StrideY &&
483  m_DilationX == rhs.m_DilationX &&
484  m_DilationY == rhs.m_DilationY &&
485  m_BiasEnabled == rhs.m_BiasEnabled &&
486  m_DataLayout == rhs.m_DataLayout;
487  }
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: