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

#include "SubGraph.hpp"
#include <functional>
#include <memory>

namespace armnn
{

class Layer;
class Graph;

class SubGraphSelector final
{
public:
    using SubGraphPtr = std::unique_ptr<SubGraph>;
    using SubGraphs = std::vector<SubGraphPtr>;
    using LayerSelectorFunction = std::function<bool(const Layer&)>;

    /// Selects subgraphs of a graph based on the selector function
    /// and the algorithm. Since the SubGraphs returns modifiable pointers
    /// the input and output slots of the graph:
    ///  1) the graph cannot be const
    ///  2) the caller need to make sure that the SubGraphs lifetime is
    ///     shorter than the graph's
    static SubGraphs SelectSubGraphs(Graph& graph,
                                     const LayerSelectorFunction& selector);

private:
    // this is a utility class, don't construct or copy
    SubGraphSelector() = delete;
    SubGraphSelector(const SubGraphSelector&) = delete;
    SubGraphSelector & operator=(const SubGraphSelector&) = delete;
};

} // namespace armnn