ArmNN
 21.02
BatchToSpaceNdLayer.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 
7 #include "LayerCloneBase.hpp"
10 
11 #include <armnn/TypesUtils.hpp>
12 
14 
18 
19 #include <numeric>
20 
21 using namespace armnnUtils;
22 
23 namespace armnn
24 {
25 
27  : LayerWithParameters(1, 1, LayerType::BatchToSpaceNd, param, name)
28 {
29 }
30 
31 std::unique_ptr<IWorkload> BatchToSpaceNdLayer::CreateWorkload(const IWorkloadFactory& factory) const
32 {
34  SetAdditionalInfo(descriptor);
35 
36  return factory.CreateBatchToSpaceNd(descriptor, PrepInfoAndDesc(descriptor));
37 }
38 
40 {
41  auto layer = CloneBase<BatchToSpaceNdLayer>(graph, m_Param, GetName());
42  return std::move(layer);
43 }
44 
46 {
48 
49  const TensorShape &outputShape = GetOutputSlot(0).GetTensorInfo().GetShape();
50 
52 
53  auto inferredShapes = InferOutputShapes({GetInputSlot(0).GetConnection()->GetTensorInfo().GetShape()});
54 
55  ARMNN_ASSERT(inferredShapes.size() == 1);
56 
57  ValidateAndCopyShape(outputShape, inferredShapes[0], m_ShapeInferenceMethod, "BatchToSpaceNdLayer");
58 }
59 
60 std::vector<TensorShape> BatchToSpaceNdLayer::InferOutputShapes(const std::vector<TensorShape>& inputShapes) const
61 {
62  ARMNN_ASSERT(inputShapes.size() == 1);
63 
64  const TensorShape& inputShape = inputShapes[0];
65  TensorShape outputShape(inputShape);
66 
67  unsigned int accumulatedBlockShape = std::accumulate(m_Param.m_BlockShape.begin(),
68  m_Param.m_BlockShape.end(),
69  1U,
70  std::multiplies<>());
71 
72  ARMNN_ASSERT(inputShape[0] % accumulatedBlockShape == 0);
73 
74  outputShape[0] = inputShape[0] / accumulatedBlockShape;
75 
76  DataLayoutIndexed dimensionIndices = m_Param.m_DataLayout;
77  unsigned int heightIndex = dimensionIndices.GetHeightIndex();
78  unsigned int widthIndex = dimensionIndices.GetWidthIndex();
79 
80  unsigned int heightCrop = m_Param.m_Crops[0].first + m_Param.m_Crops[0].second;
81  unsigned int widthCrop = m_Param.m_Crops[1].first + m_Param.m_Crops[1].second;
82 
83  unsigned int outputHeight = inputShape[heightIndex] * m_Param.m_BlockShape[0];
84  unsigned int outputWidth = inputShape[widthIndex] * m_Param.m_BlockShape[1];
85 
86  ARMNN_ASSERT_MSG(heightCrop <= outputHeight,
87  "BatchToSpaceLayer: Overall height crop should be less than or equal to the uncropped output height.");
88 
89  ARMNN_ASSERT_MSG(widthCrop <= outputWidth,
90  "BatchToSpaceLayer: Overall width crop should be less than or equal to the uncropped output width.");
91 
92  outputShape[heightIndex] = outputHeight - heightCrop;
93  outputShape[widthIndex] = outputWidth - widthCrop;
94 
95  return std::vector<TensorShape>({ outputShape });
96 }
97 
99 {
100  visitor.VisitBatchToSpaceNdLayer(this, GetParameters(), GetName());
101 }
102 
103 } // namespace armnn
virtual std::unique_ptr< IWorkload > CreateBatchToSpaceNd(const BatchToSpaceNdQueueDescriptor &descriptor, const WorkloadInfo &Info) const
BatchToSpaceNdDescriptor m_Param
The parameters for the layer (not including tensor-valued weights etc.).
const BatchToSpaceNdDescriptor & GetParameters() const
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.
unsigned int GetWidthIndex() const
const TensorShape & GetShape() const
Definition: Tensor.hpp:187
virtual std::unique_ptr< IWorkload > CreateWorkload(const IWorkloadFactory &factory) const override
Makes a workload for the BatchToSpaceNd type.
DataLayout m_DataLayout
The data layout to be used (NCHW, NHWC).
void VerifyShapeInferenceType(const TensorShape &outputShape, ShapeInferenceMethod shapeInferenceMethod)
Definition: Layer.cpp:432
BatchToSpaceNdLayer(const BatchToSpaceNdDescriptor &param, const char *name)
Constructor to create a BatchToSpaceNdLayer.
Copyright (c) 2021 ARM Limited and Contributors.
const IOutputSlot * GetConnection() const override
Definition: Layer.hpp:199
A BatchToSpaceNdDescriptor for the BatchToSpaceNdLayer.
void ValidateAndCopyShape(const TensorShape &outputShape, const TensorShape &inferredShape, const ShapeInferenceMethod shapeInferenceMethod, const std::string &layerName, const unsigned int outputSlotIndex=0)
Definition: Layer.cpp:392
unsigned int GetHeightIndex() const
void VerifyLayerConnections(unsigned int expectedConnections, const CheckLocation &location) const
Definition: Layer.cpp:348
const InputSlot & GetInputSlot(unsigned int index) const override
Get a const input slot handle by slot index.
Definition: Layer.hpp:316
void ValidateTensorShapesFromInputs() override
Check if the input tensor shape(s) will lead to a valid configuration of BatchToSpaceNdLayer.
void Accept(ILayerVisitor &visitor) const override
Apply a visitor to this layer.
#define ARMNN_ASSERT_MSG(COND, MSG)
Definition: Assert.hpp:15
std::vector< unsigned int > m_BlockShape
Block shape values.
Provides access to the appropriate indexes for Channels, Height and Width based on DataLayout...
This layer represents a BatchToSpaceNd operation.
#define ARMNN_ASSERT(COND)
Definition: Assert.hpp:14
#define CHECK_LOCATION()
Definition: Exceptions.hpp:197
virtual void VisitBatchToSpaceNdLayer(const IConnectableLayer *layer, const BatchToSpaceNdDescriptor &batchToSpaceNdDescriptor, const char *name=nullptr)=0
Function that a batch to space ND layer should call back to when its Accept(ILayerVisitor&) function ...
BatchToSpaceNdLayer * Clone(Graph &graph) const override
Creates a dynamically-allocated copy of this layer.
void SetAdditionalInfo(QueueDescriptor &descriptor) const
Definition: Layer.cpp:245
std::vector< std::pair< unsigned int, unsigned int > > m_Crops
The values to crop from the input dimension.
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:318
virtual const TensorInfo & GetTensorInfo() const =0
const char * GetName() const override
Returns the name of the layer.
Definition: Layer.hpp:311
void BatchToSpaceNd(const DataLayoutIndexed &dataLayout, const TensorInfo &inputTensorInfo, const TensorInfo &outputTensorInfo, const std::vector< unsigned int > &blockShape, const std::vector< std::pair< unsigned int, unsigned int >> &cropsData, Decoder< float > &inputDecoder, Encoder< float > &outputEncoder)
const TensorInfo & GetTensorInfo() const override
Definition: Layer.cpp:63
ShapeInferenceMethod m_ShapeInferenceMethod
Definition: Layer.hpp:408
LayerType
When adding a new layer, adapt also the LastLayer enum value in the enum class LayerType below...
Definition: Types.hpp:419