ArmNN
 22.05.01
Convolution2dLayer.cpp
Go to the documentation of this file.
1 //
2 // Copyright © 2017 Arm Ltd and Contributors. All rights reserved.
3 // SPDX-License-Identifier: MIT
4 //
5 
6 #include "Convolution2dLayer.hpp"
7 #include "LayerCloneBase.hpp"
8 
9 #include <armnn/TypesUtils.hpp>
10 
12 
15 
16 #include <string>
17 
18 using namespace armnnUtils;
19 
20 namespace armnn
21 {
22 
24  : LayerWithParameters(param.GetNumInputs(), 1, LayerType::Convolution2d, param, name)
25 {
26 
27 }
28 
30 {
31  //using DescriptorType = Parameters;
32  const std::vector<TensorShape>& inputShapes =
33  {
36  };
37  const TensorShape filterShape = inputShapes[1];
38  DataLayoutIndexed dataLayoutIndex(m_Param.m_DataLayout);
39  unsigned int filterWidth = filterShape[dataLayoutIndex.GetWidthIndex()];
40  unsigned int filterHeight = filterShape[dataLayoutIndex.GetHeightIndex()];
41  unsigned int outChannels = filterShape[0];
42 
43  fn("OutputChannels",std::to_string(outChannels));
44  fn("FilterWidth",std::to_string(filterWidth));
45  fn("FilterHeight",std::to_string(filterHeight));
47 }
48 
49 std::unique_ptr<IWorkload> Convolution2dLayer::CreateWorkload(const IWorkloadFactory& factory) const
50 {
51  // on this level constant data should not be released..
52  ARMNN_SCOPED_PROFILING_EVENT(Compute::Undefined, "Convolution2dLayer_CreateWorkload");
54  if (m_Weight)
55  {
56  descriptor.m_Weight = m_Weight.get();
57  }
59  {
60  descriptor.m_Bias = m_Bias.get();
61  }
62 
63  SetAdditionalInfo(descriptor);
64 
65  return factory.CreateWorkload(LayerType::Convolution2d, descriptor, PrepInfoAndDesc(descriptor));
66 }
67 
69 {
70  auto layer = CloneBase<Convolution2dLayer>(graph, m_Param, GetName());
71 
72  layer->m_Weight = m_Weight ? m_Weight : nullptr;
73 
74  if (layer->m_Param.m_BiasEnabled)
75  {
76  layer->m_Bias = m_Bias ? m_Bias : nullptr;
77  }
78 
79  return std::move(layer);
80 }
81 
82 std::vector<TensorShape> Convolution2dLayer::InferOutputShapes(const std::vector<TensorShape>& inputShapes) const
83 {
84  ARMNN_ASSERT(inputShapes.size() == 2);
85  const TensorShape& inputShape = inputShapes[0];
86  const TensorShape filterShape = inputShapes[1];
87 
88  // If we support multiple batch dimensions in the future, then this assert will need to change.
89  ARMNN_ASSERT_MSG(inputShape.GetNumDimensions() == 4, "Convolutions will always have 4D input.");
90 
93 
94  DataLayoutIndexed dataLayoutIndex(m_Param.m_DataLayout);
95 
96  unsigned int inWidth = inputShape[dataLayoutIndex.GetWidthIndex()];
97  unsigned int inHeight = inputShape[dataLayoutIndex.GetHeightIndex()];
98  unsigned int inBatchSize = inputShape[0];
99 
100  unsigned int filterWidth = filterShape[dataLayoutIndex.GetWidthIndex()];
101  unsigned int dilatedFilterWidth = filterWidth + (m_Param.m_DilationX - 1) * (filterWidth - 1);
102  unsigned int readWidth = (inWidth + m_Param.m_PadLeft + m_Param.m_PadRight) - dilatedFilterWidth;
103  unsigned int outWidth = 1 + (readWidth / m_Param.m_StrideX);
104 
105  unsigned int filterHeight = filterShape[dataLayoutIndex.GetHeightIndex()];
106  unsigned int dilatedFilterHeight = filterHeight + (m_Param.m_DilationY - 1) * (filterHeight - 1);
107  unsigned int readHeight = (inHeight + m_Param.m_PadTop + m_Param.m_PadBottom) - dilatedFilterHeight;
108  unsigned int outHeight = 1 + (readHeight / m_Param.m_StrideY);
109 
110  unsigned int outChannels = filterShape[0];
111  unsigned int outBatchSize = inBatchSize;
112 
114  TensorShape( { outBatchSize, outHeight, outWidth, outChannels } ) :
115  TensorShape( { outBatchSize, outChannels, outHeight, outWidth });
116 
117  return std::vector<TensorShape>({ tensorShape });
118 }
119 
121 {
123 
124  const TensorShape& outputShape = GetOutputSlot(0).GetTensorInfo().GetShape();
125 
127 
128  ARMNN_ASSERT_MSG(GetInputSlot(1).GetConnection(),
129  "Convolution2dLayer: Weights should be connected to input slot 1.");
130 
131  std::vector<TensorShape> inferredShapes = InferOutputShapes({
134 
135  ARMNN_ASSERT(inferredShapes.size() == 1);
136 
137  ValidateAndCopyShape(outputShape, inferredShapes[0], m_ShapeInferenceMethod, "Convolution2dLayer");
138 }
139 
141 {
142  // For API stability DO NOT ALTER order and add new members to the end of vector
143  return {m_Weight, m_Bias};
144 }
145 
147 void Convolution2dLayer::Accept(ILayerVisitor& visitor) const
148 {
149  visitor.VisitConvolution2dLayer(this, GetParameters(), GetName());
150 }
152 
154 {
155  strategy.ExecuteStrategy(this, GetParameters(), { }, GetName());
156 }
157 
158 } // namespace armnn
uint32_t m_PadBottom
Padding bottom value in the height dimension.
bool m_BiasEnabled
Enable/disable bias.
DataLayout m_DataLayout
The data layout to be used (NCHW, NHWC).
Convolution2dDescriptor m_Param
The parameters for the layer (not including tensor-valued weights etc.).
unsigned int GetWidthIndex() const
const TensorShape & GetShape() const
Definition: Tensor.hpp:191
#define ARMNN_NO_DEPRECATE_WARN_BEGIN
Definition: Deprecated.hpp:33
A Convolution2dDescriptor for the Convolution2dLayer.
virtual void ExecuteStrategy(const armnn::IConnectableLayer *layer, const armnn::BaseDescriptor &descriptor, const std::vector< armnn::ConstTensor > &constants, const char *name, const armnn::LayerBindingId id=0)=0
const ConstTensorHandle * m_Weight
std::shared_ptr< ConstTensorHandle > m_Weight
A unique pointer to store Weight values.
const ConstTensorHandle * m_Bias
void SerializeLayerParameters(ParameterStringifyFunction &fn) const override
Helper to serialize the layer parameters to string (currently used in DotSerializer and company)...
uint32_t m_PadRight
Padding right value in the width dimension.
Convolution2dLayer(const Convolution2dDescriptor &param, const char *name)
Constructor to create a Convolution2dLayer.
void VerifyShapeInferenceType(const TensorShape &outputShape, ShapeInferenceMethod shapeInferenceMethod)
Definition: Layer.cpp:491
Copyright (c) 2021 ARM Limited and Contributors.
const Convolution2dDescriptor & GetParameters() const override
const IOutputSlot * GetConnection() const override
Definition: Layer.hpp:204
uint32_t m_DilationY
Dilation along y axis.
void ValidateAndCopyShape(const TensorShape &outputShape, const TensorShape &inferredShape, const ShapeInferenceMethod shapeInferenceMethod, const std::string &layerName, const unsigned int outputSlotIndex=0)
Definition: Layer.cpp:422
#define ARMNN_SCOPED_PROFILING_EVENT(backendId, name)
Definition: Profiling.hpp:220
unsigned int GetHeightIndex() const
void VerifyLayerConnections(unsigned int expectedConnections, const CheckLocation &location) const
Definition: Layer.cpp:378
uint32_t m_PadTop
Padding top value in the height dimension.
const InputSlot & GetInputSlot(unsigned int index) const override
Get a const input slot handle by slot index.
Definition: Layer.hpp:322
uint32_t m_StrideX
Stride value when proceeding through input for the width dimension.
void ValidateTensorShapesFromInputs() override
Check if the input tensor shape(s) will lead to a valid configuration of Convolution2dLayer.
uint32_t GetNumInputs(bool biasEnabled)
std::vector< std::reference_wrapper< std::shared_ptr< ConstTensorHandle > >> ConstantTensors
Definition: INetwork.hpp:124
#define ARMNN_NO_DEPRECATE_WARN_END
Definition: Deprecated.hpp:34
#define ARMNN_ASSERT_MSG(COND, MSG)
Definition: Assert.hpp:15
Provides access to the appropriate indexes for Channels, Height and Width based on DataLayout...
#define ARMNN_ASSERT(COND)
Definition: Assert.hpp:14
Convolution2dLayer * Clone(Graph &graph) const override
Creates a dynamically-allocated copy of this layer.
ARMNN_NO_DEPRECATE_WARN_END void ExecuteStrategy(IStrategy &strategy) const override
Apply a visitor to this layer.
ConstantTensors GetConstantTensorsByRef() override
Deprecated.
#define CHECK_LOCATION()
Definition: Exceptions.hpp:203
uint32_t m_StrideY
Stride value when proceeding through input for the height dimension.
std::shared_ptr< ConstTensorHandle > m_Bias
A unique pointer to store Bias values.
void SetAdditionalInfo(QueueDescriptor &descriptor) const
Definition: Layer.cpp:274
uint32_t m_DilationX
Dilation along x axis.
virtual std::unique_ptr< IWorkload > CreateWorkload(const IWorkloadFactory &factory) const override
Makes a workload for the Convolution2d type.
void SerializeLayerParameters(ParameterStringifyFunction &fn) const override
Helper to serialize the layer parameters to string.
WorkloadInfo PrepInfoAndDesc(QueueDescriptor &descriptor) const
Helper function to reduce duplication in *LayerCreateWorkload.
ARMNN_NO_DEPRECATE_WARN_BEGIN void Accept(ILayerVisitor &visitor) const override
const OutputSlot & GetOutputSlot(unsigned int index=0) const override
Get the const output slot handle by slot index.
Definition: Layer.hpp:324
virtual const TensorInfo & GetTensorInfo() const =0
const char * GetName() const override
Returns the name of the layer.
Definition: Layer.hpp:317
This layer represents a convolution 2d operation.
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, otherwise infers the output shapes from given input shapes and layer properties.
std::function< void(const std::string &name, const std::string &value)> ParameterStringifyFunction
virtual std::unique_ptr< IWorkload > CreateWorkload(LayerType type, const QueueDescriptor &descriptor, const WorkloadInfo &info) const
const TensorInfo & GetTensorInfo() const override
Definition: Layer.cpp:92
ShapeInferenceMethod m_ShapeInferenceMethod
Definition: Layer.hpp:421
uint32_t m_PadLeft
Padding left value in the width dimension.
LayerType
When adding a new layer, adapt also the LastLayer enum value in the enum class LayerType below...
Definition: Types.hpp:467