ArmNN
 22.05.01
GatherNdLayer.cpp
Go to the documentation of this file.
1 //
2 // Copyright © 2022 Arm Ltd and Contributors. All rights reserved.
3 // SPDX-License-Identifier: MIT
4 //
5 
6 #include "GatherNdLayer.hpp"
7 #include "LayerCloneBase.hpp"
8 
9 #include <armnn/TypesUtils.hpp>
12 
13 namespace armnn
14 {
15 
17  : Layer(2, 1, LayerType::GatherNd, name)
18 {
19 }
20 
21 std::unique_ptr<IWorkload> GatherNdLayer::CreateWorkload(const armnn::IWorkloadFactory& factory) const
22 {
23  GatherNdQueueDescriptor descriptor;
24  SetAdditionalInfo(descriptor);
25 
26  return factory.CreateWorkload(LayerType::GatherNd, descriptor, PrepInfoAndDesc(descriptor));
27 }
28 
30 {
31  return CloneBase<GatherNdLayer>(graph, GetName());
32 }
33 
34 std::vector<TensorShape> GatherNdLayer::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 
48  // last dimension of indices
49  unsigned int index_depth = indices[indicesDim - 1];
50  ARMNN_ASSERT(index_depth <= paramsDim);
51 
52  // all but the last dimension of indices
53  std::vector<unsigned int> outer_shape;
54  outer_shape.reserve(indicesDim - 1);
55  for (unsigned int i = 0; i < indicesDim - 1; ++i)
56  {
57  outer_shape.emplace_back(indices[i]);
58  }
59 
60  // elements after index_depth
61  std::vector<unsigned int> inner_shape;
62  inner_shape.reserve(paramsDim - index_depth);
63  for (unsigned int i = index_depth; i < paramsDim; ++i)
64  {
65  inner_shape.emplace_back(params[i]);
66  }
67 
68  // concatenate outer_shape + inner_shape
69  std::vector<unsigned int> output_shape;
70  output_shape.reserve( outer_shape.size() + inner_shape.size() );
71  output_shape.insert( output_shape.end(), outer_shape.begin(), outer_shape.end() );
72  output_shape.insert( output_shape.end(), inner_shape.begin(), inner_shape.end() );
73 
74  const auto outputDim = static_cast<unsigned int>(output_shape.size());
75  return std::vector<TensorShape>({ TensorShape({outputDim, output_shape.data()})});
76 }
77 
79 {
81 
82  const TensorShape& outputShape = GetOutputSlot(0).GetTensorInfo().GetShape();
83 
85 
86  std::vector<TensorShape> inferredShapes = InferOutputShapes(
89  ARMNN_ASSERT(inferredShapes.size() == 1);
90  ARMNN_ASSERT(inferredShapes[0].GetDimensionality() == Dimensionality::Specified ||
91  inferredShapes[0].GetDimensionality() == Dimensionality::Scalar);
92 
93  ValidateAndCopyShape(outputShape, inferredShapes[0], m_ShapeInferenceMethod, "GatherNdLayer");
94 }
95 
97 void GatherNdLayer::Accept(ILayerVisitor& visitor) const
98 {
99  IgnoreUnused(visitor);
100  throw armnn::Exception("GatherNdLayer VisitGatherNdLayer is not implemented");
101 }
103 
104 } // namespace armnn
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 ValidateTensorShapesFromInputs() override
Check if the input tensor shape(s) will lead to a valid configuration of GatherNdLayer.
void VerifyShapeInferenceType(const TensorShape &outputShape, ShapeInferenceMethod shapeInferenceMethod)
Definition: Layer.cpp:491
Copyright (c) 2021 ARM Limited and Contributors.
void IgnoreUnused(Ts &&...)
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
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
std::vector< TensorShape > InferOutputShapes(const std::vector< TensorShape > &inputShapes) const override
Infers the output shapes from given input shapes and layer properties.
#define ARMNN_NO_DEPRECATE_WARN_END
Definition: Deprecated.hpp:34
WorkloadInfo PrepInfoAndDesc(QueueDescriptor &descriptor) const
Helper function to reduce duplication in *LayerCreateWorkload.
Definition: Layer.hpp:394
#define ARMNN_ASSERT(COND)
Definition: Assert.hpp:14
GatherNdLayer(const char *name)
Constructor to create a GatherNdLayer.
#define CHECK_LOCATION()
Definition: Exceptions.hpp:203
This layer represents a GatherNd operator.
void SetAdditionalInfo(QueueDescriptor &descriptor) const
Definition: Layer.cpp:274
virtual std::unique_ptr< IWorkload > CreateWorkload(const IWorkloadFactory &factory) const override
Makes a workload for the Gather type.
Base class for all ArmNN exceptions so that users can filter to just those.
Definition: Exceptions.hpp:46
unsigned int GetNumDimensions() const
Function that returns the tensor rank.
Definition: Tensor.cpp:174
ARMNN_NO_DEPRECATE_WARN_BEGIN void Accept(ILayerVisitor &visitor) const override
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
virtual std::unique_ptr< IWorkload > CreateWorkload(LayerType type, const QueueDescriptor &descriptor, const WorkloadInfo &info) const
const TensorInfo & GetTensorInfo() const override
Definition: Layer.cpp:92
GatherNdLayer * Clone(Graph &graph) const override
Creates a dynamically-allocated copy of this layer.
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