From f86be93b7492b381370cae7bf71eca8572a0cbae Mon Sep 17 00:00:00 2001 From: Matthew Sloyan Date: Tue, 24 Aug 2021 16:27:15 +0100 Subject: IVGCVSW-5924 Update 21.08 Doxygen Documents * Also updated latest symlink. Signed-off-by: Matthew Sloyan Change-Id: If9b4e0e52464abdf797b9eb858ae19bcc64c2aea --- ...nn_1_1_transpose_convolution2d_descriptor.xhtml | 456 +++++++++++++++++++++ 1 file changed, 456 insertions(+) create mode 100644 21.08/structarmnn_1_1_transpose_convolution2d_descriptor.xhtml (limited to '21.08/structarmnn_1_1_transpose_convolution2d_descriptor.xhtml') diff --git a/21.08/structarmnn_1_1_transpose_convolution2d_descriptor.xhtml b/21.08/structarmnn_1_1_transpose_convolution2d_descriptor.xhtml new file mode 100644 index 0000000000..23a15d26d8 --- /dev/null +++ b/21.08/structarmnn_1_1_transpose_convolution2d_descriptor.xhtml @@ -0,0 +1,456 @@ + + + + + + + + + + + + + +ArmNN: TransposeConvolution2dDescriptor Struct Reference + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  21.08 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
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()

+ +
+
+ + + + + +
+ + + + + + + +
TransposeConvolution2dDescriptor ()
+
+inline
+
+ +

Definition at line 1233 of file Descriptors.hpp.

+
1233  :
1234  m_PadLeft(0),
1235  m_PadRight(0),
1236  m_PadTop(0),
1237  m_PadBottom(0),
1238  m_StrideX(0),
1239  m_StrideY(0),
1240  m_BiasEnabled(false),
1242  m_OutputShapeEnabled(false)
1243  {}
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 TransposeConvolution2dDescriptorrhs) const
+
+inline
+
+ +

Definition at line 1245 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.

+
1246  {
1247  return m_PadLeft == rhs.m_PadLeft &&
1248  m_PadRight == rhs.m_PadRight &&
1249  m_PadTop == rhs.m_PadTop &&
1250  m_PadBottom == rhs.m_PadBottom &&
1251  m_StrideX == rhs.m_StrideX &&
1252  m_StrideY == rhs.m_StrideY &&
1253  m_BiasEnabled == rhs.m_BiasEnabled &&
1254  m_DataLayout == rhs.m_DataLayout &&
1255  m_OutputShapeEnabled == rhs.m_OutputShapeEnabled &&
1256  m_OutputShape == rhs.m_OutputShape;
1257  }
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

+ +
+
+ + + + +
std::vector<unsigned int> m_OutputShape
+
+
+ +

◆ m_OutputShapeEnabled

+ +
+
+ + + + +
bool m_OutputShapeEnabled
+
+ +

Output shape if it has been specified.

+ +

Definition at line 1276 of file Descriptors.hpp.

+ +

Referenced by TfLiteParserImpl::LoadModel(), TransposeConvolution2dDescriptor::operator==(), and TransposeConvolution2dLayer::ValidateTensorShapesFromInputs().

+ +
+
+ +

◆ m_PadBottom

+ + + +

◆ m_PadLeft

+ + + +

◆ m_PadRight

+ + + +

◆ m_PadTop

+ + + +

◆ m_StrideX

+ + + +

◆ m_StrideY

+ + +
The documentation for this struct was generated from the following file: +
+
+ + + + -- cgit v1.2.1