aboutsummaryrefslogtreecommitdiff
path: root/src/armnn/layers/GatherLayer.cpp
blob: e3ce6b3dad5def88f0664370db3e721a097e55ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
//
// Copyright © 2017 Arm Ltd. All rights reserved.
// SPDX-License-Identifier: MIT
//

#include "GatherLayer.hpp"
#include "LayerCloneBase.hpp"

#include <armnn/TypesUtils.hpp>
#include <backendsCommon/WorkloadData.hpp>
#include <backendsCommon/WorkloadFactory.hpp>

namespace armnn
{

GatherLayer::GatherLayer(const char* name)
    : Layer(2, 1, LayerType::Gather, name)
{
}

std::unique_ptr<IWorkload> GatherLayer::CreateWorkload(const armnn::Graph& graph,
                                                       const armnn::IWorkloadFactory& factory) const
{
    GatherQueueDescriptor descriptor;
    return factory.CreateGather(descriptor, PrepInfoAndDesc(descriptor, graph));
}

GatherLayer* GatherLayer::Clone(Graph& graph) const
{
    return CloneBase<GatherLayer>(graph, GetName());
}

void GatherLayer::ValidateTensorShapesFromInputs()
{
    VerifyLayerConnections(2, CHECK_LOCATION());

    const TensorInfo& params = GetInputSlot(0).GetConnection()->GetTensorInfo();
    const TensorInfo& indices = GetInputSlot(1).GetConnection()->GetTensorInfo();

    const unsigned int paramsDim = params.GetNumDimensions();
    const unsigned int indicesDim = indices.GetNumDimensions();
    const unsigned int outputDim = paramsDim - 1 + indicesDim;

    std::vector<unsigned int> dimSizes;

    for (unsigned int i = 0; i < indicesDim; ++i)
    {
        dimSizes.push_back(indices.GetShape()[i]);
    }
    for (unsigned int i = 1; i < paramsDim; ++i)
    {
        dimSizes.push_back(params.GetShape()[i]);
    }

    const TensorShape& inferredShape = TensorShape(outputDim, dimSizes.data());

    ConditionalThrowIfNotEqual<LayerValidationException>(
        "GatherLayer: TensorShape set on OutputSlot[0] does not match the inferred shape.",
        GetOutputSlot(0).GetTensorInfo().GetShape(),
        inferredShape);
}

void GatherLayer::Accept(ILayerVisitor& visitor) const
{
    visitor.VisitGatherLayer(this, GetName());
}

} // namespace armnn