ArmNN
 24.05
PadLayer.cpp
Go to the documentation of this file.
1 //
2 // Copyright © 2017-2024 Arm Ltd and Contributors. All rights reserved.
3 // SPDX-License-Identifier: MIT
4 //
5 
6 #include "PadLayer.hpp"
7 #include "LayerCloneBase.hpp"
8 
12 
13 #include <cstring>
14 
15 namespace armnn
16 {
17 
18 PadLayer::PadLayer(const armnn::PadDescriptor& param, const char* name)
19  : LayerWithParameters(1, 1, LayerType::Pad, param, name)
20 {}
21 
22 std::unique_ptr<IWorkload> PadLayer::CreateWorkload(const armnn::IWorkloadFactory& factory) const
23 {
24  PadQueueDescriptor descriptor;
27  SetAdditionalInfo(descriptor);
28 
29  return factory.CreateWorkload(LayerType::Pad, descriptor, PrepInfoAndDesc(descriptor));
30 }
31 
33 {
34  auto layer = CloneBase<PadLayer>(graph, m_Param, GetName());
35 
36  layer->m_Param.m_PadList = m_Param.m_PadList;
37  layer->m_Param.m_PaddingMode = m_Param.m_PaddingMode;
38 
39  return std::move(layer);
40 }
41 
42 std::vector<TensorShape> PadLayer::InferOutputShapes(const std::vector<TensorShape>& inputShapes) const
43 {
44  if (inputShapes.size() != 1)
45  {
46  throw armnn::Exception("inputShapes' size is \"" + std::to_string(inputShapes.size()) +
47  "\" - should be \"1\".");
48  }
49 
50  const TensorShape& inputShape = inputShapes[0];
51 
52  unsigned int rank = inputShape.GetNumDimensions();
53 
54  if (m_Param.m_PadList.size() != rank)
55  {
56  throw armnn::Exception("Mismatch in size of mPadList and rank (\""
57  + std::to_string(m_Param.m_PadList.size()) +
58  "\" vs "
59  + std::to_string(rank) + ")");
60  }
61 
62  if (rank == 0)
63  {
64  throw armnn::Exception("rank must not equal 0.");
65  }
66 
67  std::vector<unsigned int> outputDimensionSizes(rank);
68  for (unsigned int i = 0; i < rank; ++i)
69  {
70  outputDimensionSizes[i] = inputShape[i] + m_Param.m_PadList[i].first + m_Param.m_PadList[i].second;
71  }
72 
73  TensorShape tensorShape = TensorShape( rank, outputDimensionSizes.data());
74  return std::vector<TensorShape>({ tensorShape });
75 }
76 
78 {
80 
81  const TensorShape& outputShape = GetOutputSlot(0).GetTensorInfo().GetShape();
82 
84 
85  auto inferredShapes = InferOutputShapes({ GetInputSlot(0).GetTensorInfo().GetShape() });
86 
87  if (inferredShapes.size() != 1)
88  {
89  throw armnn::LayerValidationException("inferredShapes has "
90  + std::to_string(inferredShapes.size()) +
91  " elements - should only have 1.");
92  }
93 
94  ValidateAndCopyShape(outputShape, inferredShapes[0], m_ShapeInferenceMethod, "PadLayer");
95 }
96 
97 void PadLayer::ExecuteStrategy(IStrategy& strategy) const
98 {
99  strategy.ExecuteStrategy(this, GetParameters(), {}, GetName());
100 }
101 
102 } // namespace armnn
armnn::OutputSlot::GetTensorInfo
const TensorInfo & GetTensorInfo() const override
Definition: Layer.cpp:100
WorkloadData.hpp
CHECK_LOCATION
#define CHECK_LOCATION()
Definition: Exceptions.hpp:203
armnn::Layer::ValidateAndCopyShape
void ValidateAndCopyShape(const TensorShape &outputShape, const TensorShape &inferredShape, const ShapeInferenceMethod shapeInferenceMethod, const std::string &layerName, const unsigned int outputSlotIndex=0)
Definition: Layer.cpp:457
PadLayer.hpp
armnn::Layer::GetOutputSlot
const OutputSlot & GetOutputSlot(unsigned int index=0) const override
Get the const output slot handle by slot index.
Definition: Layer.hpp:339
armnn::PadLayer::InferOutputShapes
std::vector< TensorShape > InferOutputShapes(const std::vector< TensorShape > &inputShapes) const override
By default returns inputShapes if the number of inputs are equal to number of outputs,...
Definition: PadLayer.cpp:42
armnn::IStrategy
Definition: IStrategy.hpp:16
armnn::Layer::GetInputSlot
const InputSlot & GetInputSlot(unsigned int index) const override
Get a const input slot handle by slot index.
Definition: Layer.hpp:337
armnn::LayerWithParameters< PadDescriptor >::GetParameters
const PadDescriptor & GetParameters() const override
Definition: LayerWithParameters.hpp:19
WorkloadFactory.hpp
armnn::LayerWithParameters
Definition: LayerWithParameters.hpp:14
armnn::Layer::GetName
const char * GetName() const override
Returns the name of the layer.
Definition: Layer.hpp:332
armnn::InputSlot::GetTensorInfo
const TensorInfo & GetTensorInfo() const override
Gets the TensorInfo for this InputSlot.
Definition: Layer.cpp:614
armnn::TensorShape
Definition: Tensor.hpp:20
armnn::LayerWithParameters< PadDescriptor >::m_Param
PadDescriptor m_Param
The parameters for the layer (not including tensor-valued weights etc.).
Definition: LayerWithParameters.hpp:52
armnn::QueueDescriptorWithParameters::m_Parameters
LayerDescriptor m_Parameters
Definition: WorkloadData.hpp:66
armnn::TensorShape::GetNumDimensions
unsigned int GetNumDimensions() const
Function that returns the tensor rank.
Definition: Tensor.cpp:174
armnn::PadDescriptor
A PadDescriptor for the PadLayer.
Definition: Descriptors.hpp:1196
armnn::LayerWithParameters< PadDescriptor >::PrepInfoAndDesc
WorkloadInfo PrepInfoAndDesc(QueueDescriptor &descriptor) const
Helper function to reduce duplication in *Layer::CreateWorkload.
Definition: LayerWithParameters.hpp:44
armnn::LayerValidationException
Definition: Exceptions.hpp:105
armnn::IWorkloadFactory
Definition: WorkloadFactory.hpp:22
armnn::PadLayer::Clone
PadLayer * Clone(Graph &graph) const override
Creates a dynamically-allocated copy of this layer.
Definition: PadLayer.cpp:32
armnn::Layer::VerifyShapeInferenceType
void VerifyShapeInferenceType(const TensorShape &outputShape, ShapeInferenceMethod shapeInferenceMethod)
Definition: Layer.cpp:526
armnn::Layer::SetAdditionalInfo
void SetAdditionalInfo(QueueDescriptor &descriptor) const
Definition: Layer.cpp:303
armnn::PadLayer::PadLayer
PadLayer(const PadDescriptor &param, const char *name)
Constructor to create a PadLayer.
Definition: PadLayer.cpp:18
armnn::Exception
Base class for all ArmNN exceptions so that users can filter to just those.
Definition: Exceptions.hpp:46
armnn::Pad
void Pad(const TensorInfo &inputInfo, const TensorInfo &outputInfo, const ITensorHandle *inputHandle, ITensorHandle *outputHandle, const PadQueueDescriptor &data)
Definition: Pad.cpp:39
armnn::PadLayer::CreateWorkload
virtual std::unique_ptr< IWorkload > CreateWorkload(const IWorkloadFactory &factory) const override
Makes a workload for the Pad type.
Definition: PadLayer.cpp:22
TensorHandle.hpp
armnn::TensorInfo::GetShape
const TensorShape & GetShape() const
Definition: Tensor.hpp:193
armnn::PadQueueDescriptor
Definition: WorkloadData.hpp:294
armnn::PadDescriptor::m_PadList
std::vector< std::pair< unsigned int, unsigned int > > m_PadList
Specifies the padding for input dimension.
Definition: Descriptors.hpp:1218
armnn::PadLayer::ExecuteStrategy
void ExecuteStrategy(IStrategy &strategy) const override
Apply a visitor to this layer.
Definition: PadLayer.cpp:97
armnn
Copyright (c) 2021 ARM Limited and Contributors.
Definition: 01_00_quick_start.dox:6
armnn::LayerType::Pad
@ Pad
armnn::PadLayer::ValidateTensorShapesFromInputs
void ValidateTensorShapesFromInputs() override
Check if the input tensor shape(s) will lead to a valid configuration of PadLayer.
Definition: PadLayer.cpp:77
armnn::PadDescriptor::m_PaddingMode
PaddingMode m_PaddingMode
Specifies the Padding mode (Constant, Reflect or Symmetric)
Definition: Descriptors.hpp:1224
armnn::Layer::VerifyLayerConnections
void VerifyLayerConnections(unsigned int expectedConnections, const CheckLocation &location) const
Definition: Layer.cpp:410
armnn::Layer::m_ShapeInferenceMethod
ShapeInferenceMethod m_ShapeInferenceMethod
Definition: Layer.hpp:441
armnn::LayerType
LayerType
When adding a new layer, adapt also the LastLayer enum value in the enum class LayerType below.
Definition: Types.hpp:491
armnn::Graph
Definition: Graph.hpp:30
armnn::IWorkloadFactory::CreateWorkload
virtual std::unique_ptr< IWorkload > CreateWorkload(LayerType type, const QueueDescriptor &descriptor, const WorkloadInfo &info) const =0
Backends should implement their own CreateWorkload function with a switch statement.
armnn::IStrategy::ExecuteStrategy
virtual void ExecuteStrategy(const IConnectableLayer *layer, const armnn::BaseDescriptor &descriptor, const std::vector< armnn::ConstTensor > &constants, const char *name, const armnn::LayerBindingId id=0)=0
armnn::PadLayer
This layer represents a pad operation.
Definition: PadLayer.hpp:14
LayerCloneBase.hpp