ArmNN
 22.11
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.CreateWorkload(LayerType::BatchToSpaceNd, 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  strategy.ExecuteStrategy(this, GetParameters(), {}, GetName());
101 }
102 
103 } // namespace armnn
BatchToSpaceNdDescriptor m_Param
The parameters for the layer (not including tensor-valued weights etc.).
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:191
virtual std::unique_ptr< IWorkload > CreateWorkload(const IWorkloadFactory &factory) const override
Makes a workload for the BatchToSpaceNd type.
void ExecuteStrategy(IStrategy &strategy) const override
Apply a visitor to this layer.
DataLayout m_DataLayout
The data layout to be used (NCHW, NHWC).
void VerifyShapeInferenceType(const TensorShape &outputShape, ShapeInferenceMethod shapeInferenceMethod)
Definition: Layer.cpp:491
BatchToSpaceNdLayer(const BatchToSpaceNdDescriptor &param, const char *name)
Constructor to create a BatchToSpaceNdLayer.
Copyright (c) 2021 ARM Limited and Contributors.
const BatchToSpaceNdDescriptor & GetParameters() const override
const IOutputSlot * GetConnection() const override
Definition: Layer.hpp:206
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:422
unsigned int GetHeightIndex() const
void VerifyLayerConnections(unsigned int expectedConnections, const CheckLocation &location) const
Definition: Layer.cpp:378
const InputSlot & GetInputSlot(unsigned int index) const override
Get a const input slot handle by slot index.
Definition: Layer.hpp:324
void ValidateTensorShapesFromInputs() override
Check if the input tensor shape(s) will lead to a valid configuration of BatchToSpaceNdLayer.
#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
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
#define CHECK_LOCATION()
Definition: Exceptions.hpp:203
BatchToSpaceNdLayer * Clone(Graph &graph) const override
Creates a dynamically-allocated copy of this layer.
void SetAdditionalInfo(QueueDescriptor &descriptor) const
Definition: Layer.cpp:274
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 *Layer::CreateWorkload.
const OutputSlot & GetOutputSlot(unsigned int index=0) const override
Get the const output slot handle by slot index.
Definition: Layer.hpp:326
virtual const TensorInfo & GetTensorInfo() const =0
const char * GetName() const override
Returns the name of the layer.
Definition: Layer.hpp:319
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)
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:423
LayerType
When adding a new layer, adapt also the LastLayer enum value in the enum class LayerType below...
Definition: Types.hpp:468