aboutsummaryrefslogtreecommitdiff
path: root/src/armnn/layers/ReverseV2Layer.cpp
blob: e1160b6e169e062b0df93374ecefcf6d61708ce7 (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
69
70
71
72
//
// Copyright © 2023 Arm Ltd and Contributors. All rights reserved.
// SPDX-License-Identifier: MIT
//

#include "ReverseV2Layer.hpp"

#include <armnn/backends/WorkloadFactory.hpp>
#include "layers/LayerCloneBase.hpp"

namespace armnn
{
ReverseV2Layer::ReverseV2Layer(const char* name)
    : Layer(2, 1, LayerType::ReverseV2, name)
{
}

std::unique_ptr<IWorkload> ReverseV2Layer::CreateWorkload(const armnn::IWorkloadFactory &factory) const
{
    ReverseV2QueueDescriptor descriptor;
    SetAdditionalInfo(descriptor);

    return factory.CreateWorkload(LayerType::ReverseV2, descriptor, PrepInfoAndDesc(descriptor));
}

ReverseV2Layer* ReverseV2Layer::Clone(armnn::Graph &graph) const
{
    auto layer = CloneBase<ReverseV2Layer>(graph, GetName());

    return std::move(layer);
}

std::vector<TensorShape> ReverseV2Layer::InferOutputShapes(const std::vector<TensorShape>& inputShapes) const
{
    ARMNN_ASSERT(inputShapes.size() == 2);

    const auto inputDims = inputShapes[0].GetNumDimensions();

    std::vector<unsigned int> dimSizes(inputDims);
    for (unsigned i=0;  i<inputDims;  i++)
    {
        dimSizes[i] = inputShapes[0][i];
    }

    TensorShape outputShape({ inputDims, dimSizes.data() });

    return std::vector<TensorShape>({ outputShape });
}

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

    const TensorShape& outputShape = GetOutputSlot(0).GetTensorInfo().GetShape();

    VerifyShapeInferenceType(outputShape, m_ShapeInferenceMethod);

    auto inferredShapes = InferOutputShapes({
        GetInputSlot(0).GetTensorInfo().GetShape(),
        GetInputSlot(1).GetTensorInfo().GetShape()});

    ARMNN_ASSERT(inferredShapes.size() == 1);

    ValidateAndCopyShape(outputShape, inferredShapes[0], m_ShapeInferenceMethod, "ReverseV2Layer");
}

void ReverseV2Layer::ExecuteStrategy(IStrategy& strategy) const
{
    strategy.ExecuteStrategy(this, BaseDescriptor(), {}, GetName());
}

}