ArmNN  NotReleased
Pooling2dLayer Class Reference

This layer represents a pooling 2d operation. More...

#include <Pooling2dLayer.hpp>

Inheritance diagram for Pooling2dLayer:
LayerWithParameters< Pooling2dDescriptor > Layer IConnectableLayer

Public Member Functions

virtual std::unique_ptr< IWorkloadCreateWorkload (const IWorkloadFactory &factory) const override
 
Pooling2dLayerClone (Graph &graph) const override
 
void ValidateTensorShapesFromInputs () override
 
std::vector< TensorShapeInferOutputShapes (const std::vector< TensorShape > &inputShapes) const override
 
void Accept (ILayerVisitor &visitor) const override
 
- Public Member Functions inherited from LayerWithParameters< Pooling2dDescriptor >
const Pooling2dDescriptorGetParameters () const
 
void SerializeLayerParameters (ParameterStringifyFunction &fn) const override
 
- Public Member Functions inherited from Layer
 Layer (unsigned int numInputSlots, unsigned int numOutputSlots, LayerType type, const char *name)
 
 Layer (unsigned int numInputSlots, unsigned int numOutputSlots, LayerType type, DataLayout layout, const char *name)
 
const std::string & GetNameStr () const
 
const OutputHandlerGetOutputHandler (unsigned int i=0) const
 
OutputHandlerGetOutputHandler (unsigned int i=0)
 
const std::vector< InputSlot > & GetInputSlots () const
 
const std::vector< OutputSlot > & GetOutputSlots () const
 
std::vector< InputSlot >::iterator BeginInputSlots ()
 
std::vector< InputSlot >::iterator EndInputSlots ()
 
std::vector< OutputSlot >::iterator BeginOutputSlots ()
 
std::vector< OutputSlot >::iterator EndOutputSlots ()
 
bool IsOutputUnconnected ()
 
void ResetPriority () const
 
LayerPriority GetPriority () const
 
LayerType GetType () const
 
DataType GetDataType () const
 
const BackendIdGetBackendId () const
 
void SetBackendId (const BackendId &id)
 
virtual void CreateTensorHandles (const TensorHandleFactoryRegistry &registry, const IWorkloadFactory &factory, const bool IsMemoryManaged=true)
 
void VerifyLayerConnections (unsigned int expectedConnections, const CheckLocation &location) const
 
virtual void ReleaseConstantData ()
 
template<typename Op >
void OperateOnConstantTensors (Op op)
 
const char * GetName () const override
 
unsigned int GetNumInputSlots () const override
 
unsigned int GetNumOutputSlots () const override
 
const InputSlotGetInputSlot (unsigned int index) const override
 
InputSlotGetInputSlot (unsigned int index) override
 
const OutputSlotGetOutputSlot (unsigned int index=0) const override
 
OutputSlotGetOutputSlot (unsigned int index=0) override
 
void SetGuid (LayerGuid guid)
 
LayerGuid GetGuid () const final
 
void AddRelatedLayerName (const std::string layerName)
 
const std::list< std::string > & GetRelatedLayerNames ()
 
virtual void Reparent (Graph &dest, std::list< Layer *>::const_iterator iterator)=0
 

Protected Member Functions

 Pooling2dLayer (const Pooling2dDescriptor &param, const char *name)
 
 ~Pooling2dLayer ()=default
 Default destructor. More...
 
- Protected Member Functions inherited from LayerWithParameters< Pooling2dDescriptor >
 LayerWithParameters (unsigned int numInputSlots, unsigned int numOutputSlots, LayerType type, const Pooling2dDescriptor &param, const char *name)
 
 ~LayerWithParameters ()=default
 
WorkloadInfo PrepInfoAndDesc (QueueDescriptor &descriptor) const
 Helper function to reduce duplication in *LayerCreateWorkload. More...
 
- Protected Member Functions inherited from Layer
virtual ~Layer ()=default
 
template<typename QueueDescriptor >
void CollectQueueDescriptorInputs (QueueDescriptor &descriptor, WorkloadInfo &info) const
 
template<typename QueueDescriptor >
void CollectQueueDescriptorOutputs (QueueDescriptor &descriptor, WorkloadInfo &info) const
 
template<typename QueueDescriptor >
WorkloadInfo PrepInfoAndDesc (QueueDescriptor &descriptor) const
 Helper function to reduce duplication in *LayerCreateWorkload. More...
 
template<typename LayerType , typename ... Params>
LayerTypeCloneBase (Graph &graph, Params &&... params) const
 
virtual ConstantTensors GetConstantTensorsByRef ()
 
- Protected Member Functions inherited from IConnectableLayer
 ~IConnectableLayer ()
 Objects are not deletable via the handle. More...
 

Additional Inherited Members

- Public Types inherited from LayerWithParameters< Pooling2dDescriptor >
using DescriptorType = Pooling2dDescriptor
 
- Protected Types inherited from Layer
using ConstantTensors = std::vector< std::reference_wrapper< std::unique_ptr< ScopedCpuTensorHandle > >>
 
- Protected Attributes inherited from LayerWithParameters< Pooling2dDescriptor >
Pooling2dDescriptor m_Param
 The parameters for the layer (not including tensor-valued weights etc.). More...
 
- Protected Attributes inherited from Layer
std::vector< OutputHandlerm_OutputHandlers
 

Detailed Description

This layer represents a pooling 2d operation.

Definition at line 13 of file Pooling2dLayer.hpp.

Constructor & Destructor Documentation

◆ Pooling2dLayer()

Pooling2dLayer ( const Pooling2dDescriptor param,
const char *  name 
)
protected

Constructor to create a Pooling2dLayer.

Parameters
[in]paramPooling2dDescriptor to configure the pooling2d operation.
[in]nameOptional name for the layer.

Definition at line 22 of file Pooling2dLayer.cpp.

References armnn::Pooling2d().

23  : LayerWithParameters(1, 1, LayerType::Pooling2d, param, name)
24 {
25 }
LayerWithParameters(unsigned int numInputSlots, unsigned int numOutputSlots, LayerType type, const Pooling2dDescriptor &param, const char *name)

◆ ~Pooling2dLayer()

~Pooling2dLayer ( )
protecteddefault

Default destructor.

Member Function Documentation

◆ Accept()

void Accept ( ILayerVisitor visitor) const
overridevirtual

Implements IConnectableLayer.

Definition at line 117 of file Pooling2dLayer.cpp.

References Layer::GetName(), LayerWithParameters< Pooling2dDescriptor >::GetParameters(), and ILayerVisitor::VisitPooling2dLayer().

118 {
119  visitor.VisitPooling2dLayer(this, GetParameters(), GetName());
120 }
const char * GetName() const override
Definition: Layer.hpp:305
virtual void VisitPooling2dLayer(const IConnectableLayer *layer, const Pooling2dDescriptor &pooling2dDescriptor, const char *name=nullptr)=0
const Pooling2dDescriptor & GetParameters() const

◆ Clone()

Pooling2dLayer * Clone ( Graph graph) const
overridevirtual

Creates a dynamically-allocated copy of this layer.

Parameters
[in]graphThe graph into which this layer is being cloned.

Implements Layer.

Definition at line 33 of file Pooling2dLayer.cpp.

References Layer::GetName(), and LayerWithParameters< Pooling2dDescriptor >::m_Param.

34 {
35  return CloneBase<Pooling2dLayer>(graph, m_Param, GetName());
36 }
const char * GetName() const override
Definition: Layer.hpp:305
Pooling2dDescriptor m_Param
The parameters for the layer (not including tensor-valued weights etc.).

◆ CreateWorkload()

std::unique_ptr< IWorkload > CreateWorkload ( const IWorkloadFactory factory) const
overridevirtual

Makes a workload for the Pooling2d type.

Parameters
[in]graphThe graph where this layer can be found.
[in]factoryThe workload factory which will create the workload.
Returns
A pointer to the created workload, or nullptr if not created.

Implements Layer.

Definition at line 27 of file Pooling2dLayer.cpp.

References IWorkloadFactory::CreatePooling2d(), and LayerWithParameters< Pooling2dDescriptor >::PrepInfoAndDesc().

28 {
29  Pooling2dQueueDescriptor descriptor;
30  return factory.CreatePooling2d(descriptor, PrepInfoAndDesc(descriptor));
31 }
WorkloadInfo PrepInfoAndDesc(QueueDescriptor &descriptor) const
Helper function to reduce duplication in *LayerCreateWorkload.
virtual std::unique_ptr< IWorkload > CreatePooling2d(const Pooling2dQueueDescriptor &descriptor, const WorkloadInfo &info) const

◆ InferOutputShapes()

std::vector< TensorShape > InferOutputShapes ( const std::vector< TensorShape > &  inputShapes) const
overridevirtual

By default returns inputShapes if the number of inputs are equal to number of outputs, otherwise infers the output shapes from given input shapes and layer properties.

Parameters
[in]inputShapesThe input shapes layer has.
Returns
A vector to the inferred output shape.

Reimplemented from Layer.

Definition at line 38 of file Pooling2dLayer.cpp.

References armnn::Ceiling, armnn::Floor, DataLayoutIndexed::GetChannelsIndex(), DataLayoutIndexed::GetHeightIndex(), DataLayoutIndexed::GetWidthIndex(), Pooling2dDescriptor::m_DataLayout, Pooling2dDescriptor::m_OutputShapeRounding, Pooling2dDescriptor::m_PadBottom, Pooling2dDescriptor::m_PadLeft, Pooling2dDescriptor::m_PadRight, Pooling2dDescriptor::m_PadTop, LayerWithParameters< Pooling2dDescriptor >::m_Param, Pooling2dDescriptor::m_PoolHeight, Pooling2dDescriptor::m_PoolWidth, Pooling2dDescriptor::m_StrideX, Pooling2dDescriptor::m_StrideY, and armnn::NHWC.

Referenced by Pooling2dLayer::ValidateTensorShapesFromInputs().

39 {
40  BOOST_ASSERT(inputShapes.size() == 1);
41  const TensorShape& inputShape = inputShapes[0];
42  const DataLayoutIndexed dimensionIndices = m_Param.m_DataLayout;
43 
44  // If we support multiple batch dimensions in the future, then this assert will need to change.
45  BOOST_ASSERT_MSG(inputShape.GetNumDimensions() == 4, "Pooling2dLayer will always have 4D input.");
46 
47  unsigned int inWidth = inputShape[dimensionIndices.GetWidthIndex()];
48  unsigned int inHeight = inputShape[dimensionIndices.GetHeightIndex()];
49  unsigned int inChannels = inputShape[dimensionIndices.GetChannelsIndex()];
50  unsigned int inBatchSize = inputShape[0];
51 
52  bool isGlobalPooling = (m_Param.m_StrideX==0 && m_Param.m_StrideY==0);
53  unsigned int outWidth = 1;
54  unsigned int outHeight = 1;
55  if (!isGlobalPooling)
56  {
57  BOOST_ASSERT_MSG(m_Param.m_StrideX!=0 && m_Param.m_StrideY!=0,
58  "Stride can only be zero when performing global pooling");
59 
60  auto CalcSize = [](auto inSize, auto lowPad, auto highPad, auto poolSize, auto stride, auto outputShapeRounding)
61  {
62  unsigned int readSize = inSize + lowPad + highPad - poolSize;
63  float div = static_cast<float>(readSize) / static_cast<float>(stride);
64 
65  unsigned int size = 0;
66  switch (outputShapeRounding)
67  {
69  size = static_cast<unsigned int>(ceil(div)) + 1;
70  break;
72  size = static_cast<unsigned int>(floor(div)) + 1;
73  break;
74  default:
75  BOOST_ASSERT_MSG(false, "Unsupported Output Shape Rounding");
76  }
77 
78  // MakeS sure that border operations will start from inside the input and not the padded area.
79  // This is what both Caffe and CL do...
80  if ((size - 1)*stride >= inSize + lowPad)
81  {
82  --size;
83  }
84 
85  return size;
86  };
87 
88  outWidth = CalcSize(inWidth, m_Param.m_PadLeft, m_Param.m_PadRight, m_Param.m_PoolWidth, m_Param.m_StrideX,
90  outHeight = CalcSize(inHeight, m_Param.m_PadTop, m_Param.m_PadBottom, m_Param.m_PoolHeight, m_Param.m_StrideY,
92  }
93  unsigned int outChannels = inChannels;
94  unsigned int outBatchSize = inBatchSize;
95 
97  TensorShape( { outBatchSize, outHeight, outWidth, outChannels } ) :
98  TensorShape( { outBatchSize, outChannels, outHeight, outWidth });
99 
100  return std::vector<TensorShape>({ tensorShape });
101 }
uint32_t m_PoolHeight
Pooling height value.
unsigned int GetHeightIndex() const
uint32_t m_PadTop
Padding top value in the height dimension.
uint32_t m_PadRight
Padding right value in the width dimension.
unsigned int GetWidthIndex() const
uint32_t m_PoolWidth
Pooling width value.
Pooling2dDescriptor m_Param
The parameters for the layer (not including tensor-valued weights etc.).
uint32_t m_PadLeft
Padding left value in the width dimension.
unsigned int GetChannelsIndex() const
OutputShapeRounding m_OutputShapeRounding
The rounding method for the output shape. (Floor, Ceiling).
uint32_t m_StrideY
Stride value when proceeding through input for the height dimension.
DataLayout m_DataLayout
The data layout to be used (NCHW, NHWC).
uint32_t m_PadBottom
Padding bottom value in the height dimension.
uint32_t m_StrideX
Stride value when proceeding through input for the width dimension.

◆ ValidateTensorShapesFromInputs()

void ValidateTensorShapesFromInputs ( )
overridevirtual

Check if the input tensor shape(s) will lead to a valid configuration of Pooling2dLayer.

Implements Layer.

Definition at line 103 of file Pooling2dLayer.cpp.

References CHECK_LOCATION, InputSlot::GetConnection(), Layer::GetInputSlot(), Layer::GetOutputSlot(), TensorInfo::GetShape(), IOutputSlot::GetTensorInfo(), OutputSlot::GetTensorInfo(), Pooling2dLayer::InferOutputShapes(), and Layer::VerifyLayerConnections().

104 {
106 
107  auto inferredShapes = InferOutputShapes({ GetInputSlot(0).GetConnection()->GetTensorInfo().GetShape() });
108 
109  BOOST_ASSERT(inferredShapes.size() == 1);
110 
111  ConditionalThrowIfNotEqual<LayerValidationException>(
112  "Pooling2dLayer: TensorShape set on OutputSlot[0] does not match the inferred shape.",
114  inferredShapes[0]);
115 }
std::vector< TensorShape > InferOutputShapes(const std::vector< TensorShape > &inputShapes) const override
virtual const TensorInfo & GetTensorInfo() const =0
#define CHECK_LOCATION()
Definition: Exceptions.hpp:169
const IOutputSlot * GetConnection() const override
Definition: Layer.hpp:199
void VerifyLayerConnections(unsigned int expectedConnections, const CheckLocation &location) const
Definition: Layer.cpp:337
const TensorShape & GetShape() const
Definition: Tensor.hpp:88
const TensorInfo & GetTensorInfo() const override
Definition: Layer.cpp:63
const OutputSlot & GetOutputSlot(unsigned int index=0) const override
Definition: Layer.hpp:312
const InputSlot & GetInputSlot(unsigned int index) const override
Definition: Layer.hpp:310

The documentation for this class was generated from the following files: