ArmNN
 22.11
StridedSliceLayer.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 #include "StridedSliceLayer.hpp"
6 
7 #include "LayerCloneBase.hpp"
8 
10 
13 
14 namespace armnn
15 {
16 
18  : LayerWithParameters(1, 1, LayerType::StridedSlice, param, name)
19 {
20 }
21 
22 std::unique_ptr<IWorkload> StridedSliceLayer::CreateWorkload(const IWorkloadFactory& factory) const
23 {
24  StridedSliceQueueDescriptor descriptor;
25 
26  descriptor.m_Parameters.m_Begin = m_Param.m_Begin;
27  descriptor.m_Parameters.m_End = m_Param.m_End;
29 
30  // Optional parameters
36 
37  SetAdditionalInfo(descriptor);
38 
39  return factory.CreateWorkload(LayerType::StridedSlice, descriptor, PrepInfoAndDesc(descriptor));
40 }
41 
43 {
44  return CloneBase<StridedSliceLayer>(graph, m_Param, GetName());
45 }
46 
47 std::vector<TensorShape> StridedSliceLayer::InferOutputShapes(
48  const std::vector<TensorShape>& inputShapes) const
49 {
50  ARMNN_ASSERT(inputShapes.size() == 1);
51 
52  TensorShape inputShape = inputShapes[0];
53  std::vector<unsigned int> outputShape;
54  unsigned int amountDimShrunk{0};
55 
56  for (unsigned int i = 0; i < inputShape.GetNumDimensions(); i++)
57  {
58  int stride = m_Param.m_Stride[i];
59  int start = m_Param.GetStartForAxis(inputShape, i);
60  int stop = m_Param.GetStopForAxis(inputShape, i, start);
61 
62  if (m_Param.m_ShrinkAxisMask & (1 << i))
63  {
64  amountDimShrunk+=1;
65 
66  // If the difference between the start point and the end point of the slice on an axis being shrunk
67  // is greater than 1 then throw an error as the output will not be large enough to hold the slice
68  if (((m_Param.m_Begin[i] - m_Param.m_End[i]) > 1) || ((m_Param.m_Begin[i] - m_Param.m_End[i]) < -1))
69  {
71  "StridedSlice: Attempting to take a larger slice than can fit in inferred output");
72  }
73 
74  if (stride < 0)
75  {
77  "StridedSlice: Stride can not be negative with Shrink Axis Mask set.");
78  }
79  continue;
80  }
81 
82  int newSize = stride > 0 ? ((stop - start) + stride - 1) / stride :
83  ((start - stop) - stride - 1) / -stride;
84 
85  newSize = std::max(0, newSize);
86 
87  outputShape.push_back(armnn::numeric_cast<unsigned int>(newSize));
88  }
89 
90  if (outputShape.size() == 0 && (inputShape.GetNumDimensions() - amountDimShrunk) == 0)
91  {
92  outputShape.push_back(1);
93  }
94 
95  return std::vector<TensorShape>({
96  TensorShape(armnn::numeric_cast<unsigned int>(outputShape.size()), &outputShape[0]) });
97 }
98 
100 {
102 
103  const TensorShape& outputShape = GetOutputSlot(0).GetTensorInfo().GetShape();
104 
106 
107  auto inferredShapes = InferOutputShapes({GetInputSlot(0).GetConnection()->GetTensorInfo().GetShape()});
108 
109  ARMNN_ASSERT(inferredShapes.size() == 1);
110 
111  ValidateAndCopyShape(outputShape, inferredShapes[0], m_ShapeInferenceMethod, "StridedSliceLayer");
112 }
113 
115 {
116  strategy.ExecuteStrategy(this, GetParameters(), {}, GetName());
117 }
118 
119 } // namespace armnn
StridedSliceDescriptor m_Param
The parameters for the layer (not including tensor-valued weights etc.).
const TensorShape & GetShape() const
Definition: Tensor.hpp:191
virtual std::unique_ptr< IWorkload > CreateWorkload(const IWorkloadFactory &factory) const override
Makes a workload for the StridedSlice type.
int32_t m_ShrinkAxisMask
Shrink axis mask value. If set, the nth specification shrinks the dimensionality by 1...
std::vector< int > m_Begin
Begin values for the input that will be sliced.
int GetStartForAxis(const TensorShape &inputShape, unsigned int axis) const
void ValidateTensorShapesFromInputs() override
Check if the input tensor shape(s) will lead to a valid configuration of StridedSliceLayer.
void VerifyShapeInferenceType(const TensorShape &outputShape, ShapeInferenceMethod shapeInferenceMethod)
Definition: Layer.cpp:491
Copyright (c) 2021 ARM Limited and Contributors.
const StridedSliceDescriptor & GetParameters() const override
int32_t m_BeginMask
Begin mask value.
const IOutputSlot * GetConnection() const override
Definition: Layer.hpp:206
int32_t m_EndMask
End mask value.
void ValidateAndCopyShape(const TensorShape &outputShape, const TensorShape &inferredShape, const ShapeInferenceMethod shapeInferenceMethod, const std::string &layerName, const unsigned int outputSlotIndex=0)
Definition: Layer.cpp:422
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
int32_t m_NewAxisMask
New axis mask value.
int32_t m_EllipsisMask
Ellipsis mask value.
void ExecuteStrategy(IStrategy &strategy) const override
Apply a visitor to this layer.
#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
std::vector< int > m_Stride
Stride values for the input that will be sliced.
#define CHECK_LOCATION()
Definition: Exceptions.hpp:203
void SetAdditionalInfo(QueueDescriptor &descriptor) const
Definition: Layer.cpp:274
std::vector< int > m_End
End values for the input that will be sliced.
void StridedSlice(const TensorInfo &inputInfo, const StridedSliceDescriptor &params, const void *inputData, void *outputData, unsigned int dataTypeSize)
StridedSliceLayer * Clone(Graph &graph) const override
Creates a dynamically-allocated copy of this layer.
WorkloadInfo PrepInfoAndDesc(QueueDescriptor &descriptor) const
Helper function to reduce duplication in *Layer::CreateWorkload.
This layer represents a strided slice operation.
const OutputSlot & GetOutputSlot(unsigned int index=0) const override
Get the const output slot handle by slot index.
Definition: Layer.hpp:326
A StridedSliceDescriptor for the StridedSliceLayer.
virtual const TensorInfo & GetTensorInfo() const =0
int GetStopForAxis(const TensorShape &inputShape, unsigned int axis, int startForAxis) const
const char * GetName() const override
Returns the name of the layer.
Definition: Layer.hpp:319
virtual std::unique_ptr< IWorkload > CreateWorkload(LayerType type, const QueueDescriptor &descriptor, const WorkloadInfo &info) const
const TensorInfo & GetTensorInfo() const override
Definition: Layer.cpp:92
StridedSliceLayer(const StridedSliceDescriptor &param, const char *name)
Constructor to create a StridedSliceLayer.
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
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.