aboutsummaryrefslogtreecommitdiff
path: root/src/armnn/layers/StridedSliceLayer.hpp
blob: c3aad53e192aa37c2dff8e32a17ef608bdb4a801 (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
//
// Copyright © 2017 Arm Ltd. All rights reserved.
// SPDX-License-Identifier: MIT
//
#pragma once

#include "LayerWithParameters.hpp"

namespace armnn
{

class StridedSliceLayer : public LayerWithParameters<StridedSliceDescriptor>
{
public:
    virtual std::unique_ptr<IWorkload> CreateWorkload(const Graph&            graph,
                                                      const IWorkloadFactory& factory) const override;

    StridedSliceLayer* Clone(Graph& graph) const override;

    std::vector<TensorShape> InferOutputShapes(const std::vector<TensorShape>& inputShapes) const override;

    void ValidateTensorShapesFromInputs() override;

protected:
    StridedSliceLayer(const StridedSliceDescriptor& param, const char* name);
    ~StridedSliceLayer() = default;
};

} // namespace