ArmNN
 23.05
Pooling3dDescriptor Struct Reference

A Pooling3dDescriptor for the Pooling3dLayer. More...

#include <Descriptors.hpp>

Inheritance diagram for Pooling3dDescriptor:
BaseDescriptor

Public Member Functions

 Pooling3dDescriptor ()
 
bool operator== (const Pooling3dDescriptor &rhs) const
 
- Public Member Functions inherited from BaseDescriptor
virtual bool IsNull () const
 
virtual ~BaseDescriptor ()=default
 

Public Attributes

PoolingAlgorithm m_PoolType
 The pooling algorithm to use (Max. Average, L2). More...
 
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_PadFront
 Padding front value in the depth dimension. More...
 
uint32_t m_PadBack
 Padding back value in the depth dimension. More...
 
uint32_t m_PoolWidth
 Pooling width value. More...
 
uint32_t m_PoolHeight
 Pooling height value. More...
 
uint32_t m_PoolDepth
 Pooling depth value. 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_StrideZ
 Stride value when proceeding through input for the depth dimension. More...
 
OutputShapeRounding m_OutputShapeRounding
 The rounding method for the output shape. (Floor, Ceiling). More...
 
PaddingMethod m_PaddingMethod
 The padding method to be used. (Exclude, IgnoreValue). More...
 
DataLayout m_DataLayout
 The data layout to be used (NCDHW, NDHWC). More...
 

Detailed Description

A Pooling3dDescriptor for the Pooling3dLayer.

Definition at line 419 of file Descriptors.hpp.

Constructor & Destructor Documentation

◆ Pooling3dDescriptor()

Pooling3dDescriptor ( )
inline

Definition at line 421 of file Descriptors.hpp.

423  , m_PadLeft(0)
424  , m_PadRight(0)
425  , m_PadTop(0)
426  , m_PadBottom(0)
427  , m_PadFront(0)
428  , m_PadBack(0)
429  , m_PoolWidth(0)
430  , m_PoolHeight(0)
431  , m_PoolDepth(0)
432  , m_StrideX(0)
433  , m_StrideY(0)
434  , m_StrideZ(0)
438  {}

References armnn::Exclude, armnn::Floor, armnn::Max, and armnn::NCDHW.

Member Function Documentation

◆ operator==()

bool operator== ( const Pooling3dDescriptor rhs) const
inline

Definition at line 440 of file Descriptors.hpp.

441  {
442  return m_PoolType == rhs.m_PoolType &&
443  m_PadLeft == rhs.m_PadLeft &&
444  m_PadRight == rhs.m_PadRight &&
445  m_PadTop == rhs.m_PadTop &&
446  m_PadBottom == rhs.m_PadBottom &&
447  m_PadFront == rhs.m_PadFront &&
448  m_PadBack == rhs.m_PadBack &&
449  m_PoolWidth == rhs.m_PoolWidth &&
450  m_PoolHeight == rhs.m_PoolHeight &&
451  m_PoolDepth == rhs.m_PoolDepth &&
452  m_StrideX == rhs.m_StrideX &&
453  m_StrideY == rhs.m_StrideY &&
454  m_StrideZ == rhs.m_StrideZ &&
455  m_OutputShapeRounding == rhs.m_OutputShapeRounding &&
456  m_PaddingMethod == rhs.m_PaddingMethod &&
457  m_DataLayout == rhs.m_DataLayout;
458  }

References Pooling3dDescriptor::m_DataLayout, Pooling3dDescriptor::m_OutputShapeRounding, Pooling3dDescriptor::m_PadBack, Pooling3dDescriptor::m_PadBottom, Pooling3dDescriptor::m_PaddingMethod, Pooling3dDescriptor::m_PadFront, Pooling3dDescriptor::m_PadLeft, Pooling3dDescriptor::m_PadRight, Pooling3dDescriptor::m_PadTop, Pooling3dDescriptor::m_PoolDepth, Pooling3dDescriptor::m_PoolHeight, Pooling3dDescriptor::m_PoolType, Pooling3dDescriptor::m_PoolWidth, Pooling3dDescriptor::m_StrideX, Pooling3dDescriptor::m_StrideY, and Pooling3dDescriptor::m_StrideZ.

Member Data Documentation

◆ m_DataLayout

◆ m_OutputShapeRounding

◆ m_PadBack

◆ m_PadBottom

◆ m_PaddingMethod

◆ m_PadFront

◆ m_PadLeft

◆ m_PadRight

◆ m_PadTop

◆ m_PoolDepth

◆ m_PoolHeight

◆ m_PoolType

◆ m_PoolWidth

◆ m_StrideX

◆ m_StrideY

◆ m_StrideZ


The documentation for this struct was generated from the following file:
armnn::Pooling3dDescriptor::m_PadTop
uint32_t m_PadTop
Padding top value in the height dimension.
Definition: Descriptors.hpp:467
armnn::Pooling3dDescriptor::m_StrideX
uint32_t m_StrideX
Stride value when proceeding through input for the width dimension.
Definition: Descriptors.hpp:481
armnn::OutputShapeRounding::Floor
@ Floor
armnn::Pooling3dDescriptor::m_PadRight
uint32_t m_PadRight
Padding right value in the width dimension.
Definition: Descriptors.hpp:465
armnn::Pooling3dDescriptor::m_PoolWidth
uint32_t m_PoolWidth
Pooling width value.
Definition: Descriptors.hpp:475
armnn::Pooling3dDescriptor::m_OutputShapeRounding
OutputShapeRounding m_OutputShapeRounding
The rounding method for the output shape. (Floor, Ceiling).
Definition: Descriptors.hpp:487
armnn::Pooling3dDescriptor::m_PadLeft
uint32_t m_PadLeft
Padding left value in the width dimension.
Definition: Descriptors.hpp:463
armnn::Pooling3dDescriptor::m_PadFront
uint32_t m_PadFront
Padding front value in the depth dimension.
Definition: Descriptors.hpp:471
armnn::Pooling3dDescriptor::m_PadBack
uint32_t m_PadBack
Padding back value in the depth dimension.
Definition: Descriptors.hpp:473
armnn::DataLayout::NCDHW
@ NCDHW
armnn::Pooling3dDescriptor::m_StrideZ
uint32_t m_StrideZ
Stride value when proceeding through input for the depth dimension.
Definition: Descriptors.hpp:485
armnn::Pooling3dDescriptor::m_PoolType
PoolingAlgorithm m_PoolType
The pooling algorithm to use (Max. Average, L2).
Definition: Descriptors.hpp:461
armnn::Pooling3dDescriptor::m_PoolDepth
uint32_t m_PoolDepth
Pooling depth value.
Definition: Descriptors.hpp:479
armnn::Pooling3dDescriptor::m_PaddingMethod
PaddingMethod m_PaddingMethod
The padding method to be used. (Exclude, IgnoreValue).
Definition: Descriptors.hpp:489
armnn::Pooling3dDescriptor::m_StrideY
uint32_t m_StrideY
Stride value when proceeding through input for the height dimension.
Definition: Descriptors.hpp:483
armnn::Pooling3dDescriptor::m_PadBottom
uint32_t m_PadBottom
Padding bottom value in the height dimension.
Definition: Descriptors.hpp:469
armnn::PoolingAlgorithm::Max
@ Max
armnn::Pooling3dDescriptor::m_PoolHeight
uint32_t m_PoolHeight
Pooling height value.
Definition: Descriptors.hpp:477
armnn::PaddingMethod::Exclude
@ Exclude
The padding fields don't count and are ignored.
armnn::Pooling3dDescriptor::m_DataLayout
DataLayout m_DataLayout
The data layout to be used (NCDHW, NDHWC).
Definition: Descriptors.hpp:491