ArmNN
 20.08
TransposeConvolution2dDescriptor Struct Reference

A TransposeConvolution2dDescriptor for the TransposeConvolution2dLayer. More...

#include <Descriptors.hpp>

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

1198  :
1199  m_PadLeft(0),
1200  m_PadRight(0),
1201  m_PadTop(0),
1202  m_PadBottom(0),
1203  m_StrideX(0),
1204  m_StrideY(0),
1205  m_BiasEnabled(false),
1207  m_OutputShapeEnabled(false)
1208  {}
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 1210 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.

1211  {
1212  return m_PadLeft == rhs.m_PadLeft &&
1213  m_PadRight == rhs.m_PadRight &&
1214  m_PadTop == rhs.m_PadTop &&
1215  m_PadBottom == rhs.m_PadBottom &&
1216  m_StrideX == rhs.m_StrideX &&
1217  m_StrideY == rhs.m_StrideY &&
1218  m_BiasEnabled == rhs.m_BiasEnabled &&
1219  m_DataLayout == rhs.m_DataLayout &&
1220  m_OutputShapeEnabled == rhs.m_OutputShapeEnabled &&
1221  m_OutputShape == rhs.m_OutputShape;
1222  }
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: