ArmNN
 25.11
Loading...
Searching...
No Matches
GatherLayer.cpp
Go to the documentation of this file.
1//
2// Copyright © 2017,2019-2024 Arm Ltd and Contributors. All rights reserved.
3// SPDX-License-Identifier: MIT
4//
5
6#include "GatherLayer.hpp"
7#include "LayerCloneBase.hpp"
8
12
13namespace armnn
14{
15
16GatherLayer::GatherLayer(const GatherDescriptor& param, const char* name)
17 : LayerWithParameters(2, 1, LayerType::Gather, param, name)
18{
19}
20
21std::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
34std::vector<TensorShape> GatherLayer::InferOutputShapes(const std::vector<TensorShape>& inputShapes) const
35{
36 if (inputShapes.size() != 2)
37 {
38 throw armnn::Exception("inputShapes' size is \"" + std::to_string(inputShapes.size()) +
39 "\" - should be \"2\".");
40 }
41
42 const TensorShape& params = inputShapes[0];
43 const TensorShape& indices = inputShapes[1];
44
45 if (indices.GetDimensionality() == Dimensionality::Scalar && indices.GetNumDimensions() == 1)
46 {
47 return std::vector<TensorShape>({ TensorShape(Dimensionality::Scalar)});
48 }
49
50 const unsigned int paramsDim = params.GetNumDimensions();
51 const unsigned int indicesDim = indices.GetNumDimensions();
52 const unsigned int outputDim = paramsDim - 1 + indicesDim;
53
54 std::vector<unsigned int> dimSizes;
55
56 unsigned int axis = static_cast<unsigned int>(m_Param.m_Axis);
57 if (m_Param.m_Axis < 0)
58 {
59 int32_t axis_aux = static_cast<int32_t>(paramsDim) + m_Param.m_Axis;
60 axis = static_cast<unsigned int> (axis_aux);
61 }
62
63 for (unsigned int i = 0; i < axis; ++i)
64 {
65 dimSizes.push_back(params[i]);
66 }
67 for (unsigned int i = axis; i < indicesDim + axis; ++i)
68 {
69 dimSizes.push_back(indices[i - axis]);
70 }
71 for (unsigned int i = 1 + axis; i < paramsDim; ++i)
72 {
73 dimSizes.push_back(params[i]);
74 }
75
76 return std::vector<TensorShape>({ TensorShape({outputDim, dimSizes.data()})});
77}
78
80{
82
83 const TensorShape& outputShape = GetOutputSlot(0).GetTensorInfo().GetShape();
84
86
87 std::vector<TensorShape> inferredShapes = InferOutputShapes(
90
91 if (inferredShapes.size() != 1)
92 {
93 throw armnn::LayerValidationException("inferredShapes has "
94 + std::to_string(inferredShapes.size()) +
95 " elements - should only have 1.");
96 }
97
98 if (inferredShapes[0].GetDimensionality() != Dimensionality::Specified &&
99 inferredShapes[0].GetDimensionality() != Dimensionality::Scalar)
100 {
101 throw armnn::LayerValidationException("inferredShapes' dimensionality is neither specified nor scalar.");
102 }
103
104 ValidateAndCopyShape(outputShape, inferredShapes[0], m_ShapeInferenceMethod, "GatherLayer");
105}
106
108{
109 strategy.ExecuteStrategy(this, GetParameters(), {}, GetName());
110}
111
112} // namespace armnn
#define CHECK_LOCATION()
Base class for all ArmNN exceptions so that users can filter to just those.
GatherLayer * Clone(Graph &graph) const override
Creates a dynamically-allocated copy of this layer.
void ExecuteStrategy(IStrategy &strategy) const override
Apply a visitor to this layer.
std::vector< TensorShape > InferOutputShapes(const std::vector< TensorShape > &inputShapes) const override
Infers the output shapes from given input shapes and layer properties.
void ValidateTensorShapesFromInputs() override
Check if the input tensor shape(s).
GatherLayer(const GatherDescriptor &param, const char *name)
Constructor to create a GatherLayer.
virtual std::unique_ptr< IWorkload > CreateWorkload(const IWorkloadFactory &factory) const override
Makes a workload for the Gather type.
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
virtual std::unique_ptr< IWorkload > CreateWorkload(LayerType type, const QueueDescriptor &descriptor, const WorkloadInfo &info) const =0
Backends should implement their own CreateWorkload function with a switch statement.
const TensorInfo & GetTensorInfo() const override
Gets the TensorInfo for this InputSlot.
Definition Layer.cpp:614
void VerifyLayerConnections(unsigned int expectedConnections, const CheckLocation &location) const
Definition Layer.cpp:410
const InputSlot & GetInputSlot(unsigned int index) const override
Get a const input slot handle by slot index.
Definition Layer.hpp:337
void VerifyShapeInferenceType(const TensorShape &outputShape, ShapeInferenceMethod shapeInferenceMethod)
Definition Layer.cpp:526
const OutputSlot & GetOutputSlot(unsigned int index=0) const override
Get the const output slot handle by slot index.
Definition Layer.hpp:339
LayerType * CloneBase(Graph &graph, Params &&... params) const
const char * GetName() const override
Returns the name of the layer.
Definition Layer.hpp:332
void ValidateAndCopyShape(const TensorShape &outputShape, const TensorShape &inferredShape, const ShapeInferenceMethod shapeInferenceMethod, const std::string &layerName, const unsigned int outputSlotIndex=0)
Definition Layer.cpp:457
void SetAdditionalInfo(QueueDescriptor &descriptor) const
Definition Layer.cpp:303
ShapeInferenceMethod m_ShapeInferenceMethod
Definition Layer.hpp:441
LayerWithParameters(unsigned int numInputSlots, unsigned int numOutputSlots, LayerType type, const GatherDescriptor &param, const char *name)
WorkloadInfo PrepInfoAndDesc(QueueDescriptor &descriptor) const
const GatherDescriptor & GetParameters() const override
const TensorInfo & GetTensorInfo() const override
Definition Layer.cpp:100
const TensorShape & GetShape() const
Definition Tensor.hpp:193
unsigned int GetNumDimensions() const
Function that returns the tensor rank.
Definition Tensor.cpp:174
Dimensionality GetDimensionality() const
Function that returns the tensor type.
Definition Tensor.hpp:92
Copyright (c) 2021 ARM Limited and Contributors.
void Gather(const TensorInfo &paramsInfo, const TensorInfo &indicesInfo, const TensorInfo &outputInfo, Decoder< I > &params, const int32_t *indices, Encoder< O > &output, const int32_t axis_int)
Definition Gather.cpp:15
LayerType
When adding a new layer, adapt also the LastLayer enum value in the enum class LayerType below.
Definition Types.hpp:494
A GatherDescriptor for the GatherLayer.