ArmNN
 23.05
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
armnn::BatchToSpaceNd
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)
Definition: BatchToSpaceNd.cpp:35
DataLayoutIndexed.hpp
armnn::BatchToSpaceNdLayer::BatchToSpaceNdLayer
BatchToSpaceNdLayer(const BatchToSpaceNdDescriptor &param, const char *name)
Constructor to create a BatchToSpaceNdLayer.
Definition: BatchToSpaceNdLayer.cpp:26
armnn::BatchToSpaceNdLayer::Clone
BatchToSpaceNdLayer * Clone(Graph &graph) const override
Creates a dynamically-allocated copy of this layer.
Definition: BatchToSpaceNdLayer.cpp:39
armnn::BatchToSpaceNdDescriptor::m_Crops
std::vector< std::pair< unsigned int, unsigned int > > m_Crops
The values to crop from the input dimension.
Definition: Descriptors.hpp:888
CHECK_LOCATION
#define CHECK_LOCATION()
Definition: Exceptions.hpp:203
LayerWithParameters.hpp
armnn::Layer::VerifyLayerConnections
void VerifyLayerConnections(unsigned int expectedConnections, const CheckLocation &location) const
Definition: Layer.cpp:378
armnn::InputSlot::GetConnection
const IOutputSlot * GetConnection() const override
Definition: Layer.hpp:206
armnn::LayerWithParameters
Definition: LayerWithParameters.hpp:14
armnnUtils::DataLayoutIndexed::GetWidthIndex
unsigned int GetWidthIndex() const
Definition: DataLayoutIndexed.hpp:25
armnn::Layer::VerifyShapeInferenceType
void VerifyShapeInferenceType(const TensorShape &outputShape, ShapeInferenceMethod shapeInferenceMethod)
Definition: Layer.cpp:491
TensorHandle.hpp
armnn::IWorkloadFactory
Definition: WorkloadFactory.hpp:22
WorkloadFactory.hpp
armnn::BatchToSpaceNdLayer::ExecuteStrategy
void ExecuteStrategy(IStrategy &strategy) const override
Apply a visitor to this layer.
Definition: BatchToSpaceNdLayer.cpp:98
armnn::Layer::SetAdditionalInfo
void SetAdditionalInfo(QueueDescriptor &descriptor) const
Definition: Layer.cpp:274
armnn::Layer::m_ShapeInferenceMethod
ShapeInferenceMethod m_ShapeInferenceMethod
Definition: Layer.hpp:427
armnn::Layer::ValidateAndCopyShape
void ValidateAndCopyShape(const TensorShape &outputShape, const TensorShape &inferredShape, const ShapeInferenceMethod shapeInferenceMethod, const std::string &layerName, const unsigned int outputSlotIndex=0)
Definition: Layer.cpp:422
armnn
Copyright (c) 2021 ARM Limited and Contributors.
Definition: 01_00_quick_start.dox:6
armnn::IStrategy
Definition: IStrategy.hpp:16
armnn::OutputSlot::GetTensorInfo
const TensorInfo & GetTensorInfo() const override
Definition: Layer.cpp:92
armnn::BatchToSpaceNdDescriptor
A BatchToSpaceNdDescriptor for the BatchToSpaceNdLayer.
Definition: Descriptors.hpp:863
BatchToSpaceNdLayer.hpp
armnnUtils
Definition: CompatibleTypes.hpp:10
armnn::BatchToSpaceNdLayer::InferOutputShapes
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: BatchToSpaceNdLayer.cpp:60
armnn::TensorShape
Definition: Tensor.hpp:20
armnn::LayerType
LayerType
When adding a new layer, adapt also the LastLayer enum value in the enum class LayerType below.
Definition: Types.hpp:479
armnn::IOutputSlot::GetTensorInfo
virtual const TensorInfo & GetTensorInfo() const =0
armnn::Layer::GetOutputSlot
const OutputSlot & GetOutputSlot(unsigned int index=0) const override
Get the const output slot handle by slot index.
Definition: Layer.hpp:326
armnn::BatchToSpaceNdDescriptor::m_DataLayout
DataLayout m_DataLayout
The data layout to be used (NCHW, NHWC).
Definition: Descriptors.hpp:890
armnn::LayerWithParameters< BatchToSpaceNdDescriptor >::PrepInfoAndDesc
WorkloadInfo PrepInfoAndDesc(QueueDescriptor &descriptor) const
Helper function to reduce duplication in *Layer::CreateWorkload.
Definition: LayerWithParameters.hpp:44
armnn::BatchToSpaceNdLayer
This layer represents a BatchToSpaceNd operation.
Definition: BatchToSpaceNdLayer.hpp:13
armnn::BatchToSpaceNdLayer::ValidateTensorShapesFromInputs
void ValidateTensorShapesFromInputs() override
Check if the input tensor shape(s) will lead to a valid configuration of BatchToSpaceNdLayer.
Definition: BatchToSpaceNdLayer.cpp:45
armnn::TensorInfo::GetShape
const TensorShape & GetShape() const
Definition: Tensor.hpp:191
ARMNN_ASSERT_MSG
#define ARMNN_ASSERT_MSG(COND, MSG)
Definition: Assert.hpp:15
LayerCloneBase.hpp
armnn::Layer::GetInputSlot
const InputSlot & GetInputSlot(unsigned int index) const override
Get a const input slot handle by slot index.
Definition: Layer.hpp:324
armnn::BatchToSpaceNdDescriptor::m_BlockShape
std::vector< unsigned int > m_BlockShape
Block shape values.
Definition: Descriptors.hpp:886
armnn::IStrategy::ExecuteStrategy
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
armnn::LayerType::BatchToSpaceNd
@ BatchToSpaceNd
armnn::Graph
Definition: Graph.hpp:30
ARMNN_ASSERT
#define ARMNN_ASSERT(COND)
Definition: Assert.hpp:14
armnnUtils::DataLayoutIndexed
Provides access to the appropriate indexes for Channels, Height and Width based on DataLayout.
Definition: DataLayoutIndexed.hpp:17
armnn::BatchToSpaceNdQueueDescriptor
Definition: WorkloadData.hpp:457
armnn::IWorkloadFactory::CreateWorkload
virtual std::unique_ptr< IWorkload > CreateWorkload(LayerType type, const QueueDescriptor &descriptor, const WorkloadInfo &info) const
Definition: WorkloadFactory.cpp:1590
armnnUtils::DataLayoutIndexed::GetHeightIndex
unsigned int GetHeightIndex() const
Definition: DataLayoutIndexed.hpp:24
armnn::Layer::GetName
const char * GetName() const override
Returns the name of the layer.
Definition: Layer.hpp:319
TypesUtils.hpp
WorkloadData.hpp
armnn::LayerWithParameters< BatchToSpaceNdDescriptor >::GetParameters
const BatchToSpaceNdDescriptor & GetParameters() const override
Definition: LayerWithParameters.hpp:19
armnn::LayerWithParameters< BatchToSpaceNdDescriptor >::m_Param
BatchToSpaceNdDescriptor m_Param
The parameters for the layer (not including tensor-valued weights etc.).
Definition: LayerWithParameters.hpp:52
armnn::BatchToSpaceNdLayer::CreateWorkload
virtual std::unique_ptr< IWorkload > CreateWorkload(const IWorkloadFactory &factory) const override
Makes a workload for the BatchToSpaceNd type.
Definition: BatchToSpaceNdLayer.cpp:31