ArmNN
 20.02
Convolution2dLayer.cpp
Go to the documentation of this file.
1 //
2 // Copyright © 2017 Arm Ltd. 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(1, 1, LayerType::Convolution2d, param, name)
25 {
26 
27 }
28 
30 {
31  //using DescriptorType = Parameters;
32  const std::vector<TensorShape>& inputShapes =
33  {
35  m_Weight->GetTensorInfo().GetShape()
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  BOOST_ASSERT_MSG(m_Weight != nullptr, "Convolution2dLayer: Weights data should not be null.");
53 
55 
56  descriptor.m_Weight = m_Weight.get();
57 
59  {
60  BOOST_ASSERT_MSG(m_Bias != nullptr, "Convolution2dLayer: Bias data should not be null.");
61  descriptor.m_Bias = m_Bias.get();
62  }
63  return factory.CreateConvolution2d(descriptor, PrepInfoAndDesc(descriptor));
64 }
65 
67 {
68  auto layer = CloneBase<Convolution2dLayer>(graph, m_Param, GetName());
69 
70  layer->m_Weight = m_Weight ? std::make_unique<ScopedCpuTensorHandle>(*m_Weight) : nullptr;
71 
72  if (layer->m_Param.m_BiasEnabled)
73  {
74  layer->m_Bias = m_Bias ? std::make_unique<ScopedCpuTensorHandle>(*m_Bias) : nullptr;
75  }
76 
77  return std::move(layer);
78 }
79 
80 std::vector<TensorShape> Convolution2dLayer::InferOutputShapes(const std::vector<TensorShape>& inputShapes) const
81 {
82  BOOST_ASSERT(inputShapes.size() == 2);
83  const TensorShape& inputShape = inputShapes[0];
84  const TensorShape filterShape = inputShapes[1];
85 
86  // If we support multiple batch dimensions in the future, then this assert will need to change.
87  BOOST_ASSERT_MSG(inputShape.GetNumDimensions() == 4, "Convolutions will always have 4D input.");
88 
89  DataLayoutIndexed dataLayoutIndex(m_Param.m_DataLayout);
90 
91  unsigned int inWidth = inputShape[dataLayoutIndex.GetWidthIndex()];
92  unsigned int inHeight = inputShape[dataLayoutIndex.GetHeightIndex()];
93  unsigned int inBatchSize = inputShape[0];
94 
95  unsigned int filterWidth = filterShape[dataLayoutIndex.GetWidthIndex()];
96  unsigned int dilatedFilterWidth = filterWidth + (m_Param.m_DilationX - 1) * (filterWidth - 1);
97  unsigned int readWidth = (inWidth + m_Param.m_PadLeft + m_Param.m_PadRight) - dilatedFilterWidth;
98  unsigned int outWidth = 1 + (readWidth / m_Param.m_StrideX);
99 
100  unsigned int filterHeight = filterShape[dataLayoutIndex.GetHeightIndex()];
101  unsigned int dilatedFilterHeight = filterHeight + (m_Param.m_DilationY - 1) * (filterHeight - 1);
102  unsigned int readHeight = (inHeight + m_Param.m_PadTop + m_Param.m_PadBottom) - dilatedFilterHeight;
103  unsigned int outHeight = 1 + (readHeight / m_Param.m_StrideY);
104 
105  unsigned int outChannels = filterShape[0];
106  unsigned int outBatchSize = inBatchSize;
107 
109  TensorShape( { outBatchSize, outHeight, outWidth, outChannels } ) :
110  TensorShape( { outBatchSize, outChannels, outHeight, outWidth });
111 
112  return std::vector<TensorShape>({ tensorShape });
113 }
114 
116 {
118 
119  // check if we m_Weight data is not nullptr
120  BOOST_ASSERT_MSG(m_Weight != nullptr, "Convolution2dLayer: Weights data should not be null.");
121 
122  auto inferredShapes = InferOutputShapes({
124  m_Weight->GetTensorInfo().GetShape() });
125 
126  BOOST_ASSERT(inferredShapes.size() == 1);
127 
128  ConditionalThrowIfNotEqual<LayerValidationException>(
129  "Convolution2dLayer: TensorShape set on OutputSlot[0] does not match the inferred shape.",
131  inferredShapes[0]);
132 }
133 
135 {
136  return {m_Weight, m_Bias};
137 }
138 
140 {
141  ConstTensor weightsTensor(m_Weight->GetTensorInfo(), m_Weight->Map(true)) ;
142  Optional<ConstTensor> optionalBiasTensor = EmptyOptional();
143 
144  if (GetParameters().m_BiasEnabled)
145  {
146  ConstTensor biasTensor(m_Bias->GetTensorInfo(), m_Bias->Map(true));
147  optionalBiasTensor = Optional<ConstTensor>(biasTensor);
148  }
149 
150  visitor.VisitConvolution2dLayer(this, GetParameters(), weightsTensor, optionalBiasTensor, GetName());
151 }
152 
153 } // namespace armnn
uint32_t m_PadBottom
Padding bottom value in the height dimension.
bool m_BiasEnabled
Enable/disable bias.
const ConstCpuTensorHandle * m_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.).
const Convolution2dDescriptor & GetParameters() const
unsigned int GetWidthIndex() const
const TensorShape & GetShape() const
Definition: Tensor.hpp:88
void Accept(ILayerVisitor &visitor) const override
Apply a visitor to this layer.
std::unique_ptr< ScopedCpuTensorHandle > m_Bias
A unique pointer to store Bias values.
A Convolution2dDescriptor for the Convolution2dLayer.
void SerializeLayerParameters(ParameterStringifyFunction &fn) const override
Helper to serialize the layer parameters to string (currently used in DotSerializer and company)...
virtual void VisitConvolution2dLayer(const IConnectableLayer *layer, const Convolution2dDescriptor &convolution2dDescriptor, const ConstTensor &weights, const Optional< ConstTensor > &biases, const char *name=nullptr)=0
Function that a 2D convolution layer should call back to when its Accept(ILayerVisitor&) function is ...
uint32_t m_PadRight
Padding right value in the width dimension.
Convolution2dLayer(const Convolution2dDescriptor &param, const char *name)
Constructor to create a Convolution2dLayer.
Copyright (c) 2020 ARM Limited.
const IOutputSlot * GetConnection() const override
Definition: Layer.hpp:199
uint32_t m_DilationY
Dilation along y axis.
unsigned int GetHeightIndex() const
void VerifyLayerConnections(unsigned int expectedConnections, const CheckLocation &location) const
Definition: Layer.cpp:338
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:310
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.
Provides access to the appropriate indexes for Channels, Height and Width based on DataLayout...
const ConstCpuTensorHandle * m_Weight
std::unique_ptr< ScopedCpuTensorHandle > m_Weight
A unique pointer to store Weight values.
A tensor defined by a TensorInfo (shape and data type) and an immutable backing store.
Definition: Tensor.hpp:199
Convolution2dLayer * Clone(Graph &graph) const override
Creates a dynamically-allocated copy of this layer.
ConstantTensors GetConstantTensorsByRef() override
Retrieve the handles to the constant values stored by the layer.
#define CHECK_LOCATION()
Definition: Exceptions.hpp:192
uint32_t m_StrideY
Stride value when proceeding through input for the height dimension.
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.
EmptyOptional is used to initialize the Optional class in case we want to have default value for an O...
Definition: Optional.hpp:32
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.
const OutputSlot & GetOutputSlot(unsigned int index=0) const override
Get the const output slot handle by slot index.
Definition: Layer.hpp:312
virtual const TensorInfo & GetTensorInfo() const =0
const char * GetName() const override
Returns the name of the layer.
Definition: Layer.hpp:305
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
std::vector< std::reference_wrapper< std::unique_ptr< ScopedCpuTensorHandle > >> ConstantTensors
Definition: Layer.hpp:363
const TensorInfo & GetTensorInfo() const override
Definition: Layer.cpp:63
uint32_t m_PadLeft
Padding left value in the width dimension.
virtual std::unique_ptr< IWorkload > CreateConvolution2d(const Convolution2dQueueDescriptor &descriptor, const WorkloadInfo &info) const