ArmNN
 25.11
Loading...
Searching...
No Matches
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
15namespace armnn
16{
17
18PadLayer::PadLayer(const armnn::PadDescriptor& param, const char* name)
19 : LayerWithParameters(1, 1, LayerType::Pad, param, name)
20{}
21
22std::unique_ptr<IWorkload> PadLayer::CreateWorkload(const armnn::IWorkloadFactory& factory) const
23{
24 PadQueueDescriptor descriptor;
25 descriptor.m_Parameters.m_PadList = m_Param.m_PadList;
26 descriptor.m_Parameters.m_PaddingMode = m_Param.m_PaddingMode;
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
42std::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
98{
99 strategy.ExecuteStrategy(this, GetParameters(), {}, GetName());
100}
101
102} // namespace armnn
#define CHECK_LOCATION()
Base class for all ArmNN exceptions so that users can filter to just those.
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
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.
const TensorInfo & GetTensorInfo() const override
Gets the TensorInfo for this InputSlot.
Definition Layer.cpp:614
void VerifyLayerConnections(unsigned int expectedConnections, const CheckLocation &location) const
Definition Layer.cpp:410
const InputSlot & GetInputSlot(unsigned int index) const override
Get a const input slot handle by slot index.
Definition Layer.hpp:337
void VerifyShapeInferenceType(const TensorShape &outputShape, ShapeInferenceMethod shapeInferenceMethod)
Definition Layer.cpp:526
const OutputSlot & GetOutputSlot(unsigned int index=0) const override
Get the const output slot handle by slot index.
Definition Layer.hpp:339
LayerType * CloneBase(Graph &graph, Params &&... params) const
const char * GetName() const override
Returns the name of the layer.
Definition Layer.hpp:332
void ValidateAndCopyShape(const TensorShape &outputShape, const TensorShape &inferredShape, const ShapeInferenceMethod shapeInferenceMethod, const std::string &layerName, const unsigned int outputSlotIndex=0)
Definition Layer.cpp:457
void SetAdditionalInfo(QueueDescriptor &descriptor) const
Definition Layer.cpp:303
ShapeInferenceMethod m_ShapeInferenceMethod
Definition Layer.hpp:441
LayerWithParameters(unsigned int numInputSlots, unsigned int numOutputSlots, LayerType type, const PadDescriptor &param, const char *name)
WorkloadInfo PrepInfoAndDesc(QueueDescriptor &descriptor) const
const PadDescriptor & GetParameters() const override
const TensorInfo & GetTensorInfo() const override
Definition Layer.cpp:100
PadLayer * Clone(Graph &graph) const override
Creates a dynamically-allocated copy of this layer.
Definition PadLayer.cpp:32
void ExecuteStrategy(IStrategy &strategy) const override
Apply a visitor to this layer.
Definition PadLayer.cpp:97
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
void ValidateTensorShapesFromInputs() override
Check if the input tensor shape(s) will lead to a valid configuration of PadLayer.
Definition PadLayer.cpp:77
PadLayer(const PadDescriptor &param, const char *name)
Constructor to create a PadLayer.
Definition PadLayer.cpp:18
virtual std::unique_ptr< IWorkload > CreateWorkload(const IWorkloadFactory &factory) const override
Makes a workload for the Pad type.
Definition PadLayer.cpp:22
const TensorShape & GetShape() const
Definition Tensor.hpp:193
unsigned int GetNumDimensions() const
Function that returns the tensor rank.
Definition Tensor.cpp:174
Copyright (c) 2021 ARM Limited and Contributors.
void Pad(const TensorInfo &inputInfo, const TensorInfo &outputInfo, const ITensorHandle *inputHandle, ITensorHandle *outputHandle, const PadQueueDescriptor &data)
Definition Pad.cpp:39
LayerType
When adding a new layer, adapt also the LastLayer enum value in the enum class LayerType below.
Definition Types.hpp:494
A PadDescriptor for the PadLayer.
PaddingMode m_PaddingMode
Specifies the Padding mode (Constant, Reflect or Symmetric)
std::vector< std::pair< unsigned int, unsigned int > > m_PadList
Specifies the padding for input dimension.