ArmNN
 22.05
GatherLayer.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 
6 #include "GatherLayer.hpp"
7 #include "LayerCloneBase.hpp"
8 
9 #include <armnn/TypesUtils.hpp>
12 
13 namespace armnn
14 {
15 
16 GatherLayer::GatherLayer(const GatherDescriptor& param, const char* name)
17  : LayerWithParameters(2, 1, LayerType::Gather, param, name)
18 {
19 }
20 
21 std::unique_ptr<IWorkload> GatherLayer::CreateWorkload(const armnn::IWorkloadFactory& factory) const
22 {
23  GatherQueueDescriptor descriptor;
24  SetAdditionalInfo(descriptor);
25 
26  return factory.CreateWorkload(LayerType::Gather, descriptor, PrepInfoAndDesc(descriptor));
27 }
28 
30 {
31  return CloneBase<GatherLayer>(graph, m_Param, GetName());
32 }
33 
34 std::vector<TensorShape> GatherLayer::InferOutputShapes(const std::vector<TensorShape>& inputShapes) const
35 {
36  ARMNN_ASSERT(inputShapes.size() == 2);
37  const TensorShape& params = inputShapes[0];
38  const TensorShape& indices = inputShapes[1];
39 
40  if (indices.GetDimensionality() == Dimensionality::Scalar && indices.GetNumDimensions() == 1)
41  {
42  return std::vector<TensorShape>({ TensorShape(Dimensionality::Scalar)});
43  }
44 
45  const unsigned int paramsDim = params.GetNumDimensions();
46  const unsigned int indicesDim = indices.GetNumDimensions();
47  const unsigned int outputDim = paramsDim - 1 + indicesDim;
48 
49  std::vector<unsigned int> dimSizes;
50 
51  unsigned int axis = static_cast<unsigned int>(m_Param.m_Axis);
52  if (m_Param.m_Axis < 0)
53  {
54  int32_t axis_aux = static_cast<int32_t>(paramsDim) + m_Param.m_Axis;
55  axis = static_cast<unsigned int> (axis_aux);
56  }
57 
58  for (unsigned int i = 0; i < axis; ++i)
59  {
60  dimSizes.push_back(params[i]);
61  }
62  for (unsigned int i = axis; i < indicesDim + axis; ++i)
63  {
64  dimSizes.push_back(indices[i - axis]);
65  }
66  for (unsigned int i = 1 + axis; i < paramsDim; ++i)
67  {
68  dimSizes.push_back(params[i]);
69  }
70 
71  return std::vector<TensorShape>({ TensorShape({outputDim, dimSizes.data()})});
72 }
73 
75 {
77 
78  const TensorShape& outputShape = GetOutputSlot(0).GetTensorInfo().GetShape();
79 
81 
82  std::vector<TensorShape> inferredShapes = InferOutputShapes(
85  ARMNN_ASSERT(inferredShapes.size() == 1);
86  ARMNN_ASSERT(inferredShapes[0].GetDimensionality() == Dimensionality::Specified ||
87  inferredShapes[0].GetDimensionality() == Dimensionality::Scalar);
88 
89  ValidateAndCopyShape(outputShape, inferredShapes[0], m_ShapeInferenceMethod, "GatherLayer");
90 }
91 
93 void GatherLayer::Accept(ILayerVisitor& visitor) const
94 {
95  visitor.VisitGatherLayer(this, GetParameters(), GetName());
96 }
98 
99 } // namespace armnn
ARMNN_NO_DEPRECATE_WARN_BEGIN void Accept(ILayerVisitor &visitor) const override
Definition: GatherLayer.cpp:93
GatherDescriptor m_Param
The parameters for the layer (not including tensor-valued weights etc.).
const TensorShape & GetShape() const
Definition: Tensor.hpp:191
#define ARMNN_NO_DEPRECATE_WARN_BEGIN
Definition: Deprecated.hpp:33
Dimensionality GetDimensionality() const
Function that returns the tensor type.
Definition: Tensor.hpp:92
void VerifyShapeInferenceType(const TensorShape &outputShape, ShapeInferenceMethod shapeInferenceMethod)
Definition: Layer.cpp:491
std::vector< TensorShape > InferOutputShapes(const std::vector< TensorShape > &inputShapes) const override
Infers the output shapes from given input shapes and layer properties.
Definition: GatherLayer.cpp:34
Copyright (c) 2021 ARM Limited and Contributors.
const GatherDescriptor & GetParameters() const override
const IOutputSlot * GetConnection() const override
Definition: Layer.hpp:204
void ValidateAndCopyShape(const TensorShape &outputShape, const TensorShape &inferredShape, const ShapeInferenceMethod shapeInferenceMethod, const std::string &layerName, const unsigned int outputSlotIndex=0)
Definition: Layer.cpp:422
GatherLayer * Clone(Graph &graph) const override
Creates a dynamically-allocated copy of this layer.
Definition: GatherLayer.cpp:29
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:322
This layer represents a Gather operator.
Definition: GatherLayer.hpp:14
#define ARMNN_NO_DEPRECATE_WARN_END
Definition: Deprecated.hpp:34
void Gather(const TensorInfo &paramsInfo, const TensorInfo &indicesInfo, const TensorInfo &outputInfo, Decoder< float > &params, const int32_t *indices, Encoder< float > &output, const int32_t axis)
Definition: Gather.cpp:17
A GatherDescriptor for the GatherLayer.
#define ARMNN_ASSERT(COND)
Definition: Assert.hpp:14
#define CHECK_LOCATION()
Definition: Exceptions.hpp:203
void SetAdditionalInfo(QueueDescriptor &descriptor) const
Definition: Layer.cpp:274
int32_t m_Axis
The axis in params to gather indices from.
unsigned int GetNumDimensions() const
Function that returns the tensor rank.
Definition: Tensor.cpp:174
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:324
virtual const TensorInfo & GetTensorInfo() const =0
const char * GetName() const override
Returns the name of the layer.
Definition: Layer.hpp:317
void ValidateTensorShapesFromInputs() override
Check if the input tensor shape(s).
Definition: GatherLayer.cpp:74
virtual std::unique_ptr< IWorkload > CreateWorkload(LayerType type, const QueueDescriptor &descriptor, const WorkloadInfo &info) const
const TensorInfo & GetTensorInfo() const override
Definition: Layer.cpp:92
GatherLayer(const GatherDescriptor &param, const char *name)
Constructor to create a GatherLayer.
Definition: GatherLayer.cpp:16
virtual std::unique_ptr< IWorkload > CreateWorkload(const IWorkloadFactory &factory) const override
Makes a workload for the Gather type.
Definition: GatherLayer.cpp:21
ShapeInferenceMethod m_ShapeInferenceMethod
Definition: Layer.hpp:421
LayerType
When adding a new layer, adapt also the LastLayer enum value in the enum class LayerType below...
Definition: Types.hpp:467