ArmNN
 21.02
TransposeConvolution2dDescriptor Struct Reference

A TransposeConvolution2dDescriptor for the TransposeConvolution2dLayer. More...

#include <Descriptors.hpp>

Inheritance diagram for TransposeConvolution2dDescriptor:
BaseDescriptor

Public Member Functions

 TransposeConvolution2dDescriptor ()
 
bool operator== (const TransposeConvolution2dDescriptor &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...
 
bool m_BiasEnabled
 Enable/disable bias. More...
 
DataLayout m_DataLayout
 The data layout to be used (NCHW, NHWC). More...
 
bool m_OutputShapeEnabled
 Output shape if it has been specified. More...
 
std::vector< unsigned int > m_OutputShape
 

Detailed Description

Constructor & Destructor Documentation

◆ TransposeConvolution2dDescriptor()

Definition at line 1215 of file Descriptors.hpp.

1215  :
1216  m_PadLeft(0),
1217  m_PadRight(0),
1218  m_PadTop(0),
1219  m_PadBottom(0),
1220  m_StrideX(0),
1221  m_StrideY(0),
1222  m_BiasEnabled(false),
1224  m_OutputShapeEnabled(false)
1225  {}
bool m_BiasEnabled
Enable/disable bias.
bool m_OutputShapeEnabled
Output shape if it has been specified.
uint32_t m_PadBottom
Padding bottom value in the height dimension.
uint32_t m_PadTop
Padding top 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_StrideX
Stride value when proceeding through input for the width 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 TransposeConvolution2dDescriptor rhs) const
inline

Definition at line 1227 of file Descriptors.hpp.

References TransposeConvolution2dDescriptor::m_BiasEnabled, TransposeConvolution2dDescriptor::m_DataLayout, TransposeConvolution2dDescriptor::m_OutputShape, TransposeConvolution2dDescriptor::m_OutputShapeEnabled, TransposeConvolution2dDescriptor::m_PadBottom, TransposeConvolution2dDescriptor::m_PadLeft, TransposeConvolution2dDescriptor::m_PadRight, TransposeConvolution2dDescriptor::m_PadTop, TransposeConvolution2dDescriptor::m_StrideX, and TransposeConvolution2dDescriptor::m_StrideY.

1228  {
1229  return m_PadLeft == rhs.m_PadLeft &&
1230  m_PadRight == rhs.m_PadRight &&
1231  m_PadTop == rhs.m_PadTop &&
1232  m_PadBottom == rhs.m_PadBottom &&
1233  m_StrideX == rhs.m_StrideX &&
1234  m_StrideY == rhs.m_StrideY &&
1235  m_BiasEnabled == rhs.m_BiasEnabled &&
1236  m_DataLayout == rhs.m_DataLayout &&
1237  m_OutputShapeEnabled == rhs.m_OutputShapeEnabled &&
1238  m_OutputShape == rhs.m_OutputShape;
1239  }
bool m_BiasEnabled
Enable/disable bias.
std::vector< unsigned int > m_OutputShape
bool m_OutputShapeEnabled
Output shape if it has been specified.
uint32_t m_PadBottom
Padding bottom value in the height dimension.
uint32_t m_PadTop
Padding top 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_StrideX
Stride value when proceeding through input for the width 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_OutputShape

◆ m_OutputShapeEnabled

bool m_OutputShapeEnabled

◆ m_PadBottom

◆ m_PadLeft

◆ m_PadRight

◆ m_PadTop

◆ m_StrideX

◆ m_StrideY


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