aboutsummaryrefslogtreecommitdiff
path: root/src/backends/LayerSupportRegistry.hpp
blob: a5efad05ef6d4a2e95385f3447f6ab5400641b84 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//
// Copyright © 2017 Arm Ltd. All rights reserved.
// SPDX-License-Identifier: MIT
//
#pragma once

#include "RegistryCommon.hpp"
#include <armnn/ILayerSupport.hpp>

namespace armnn
{

using LayerSupportRegistry = RegistryCommon<ILayerSupport, ILayerSupportSharedPtr>;

LayerSupportRegistry& LayerSupportRegistryInstance();

template <>
struct RegisteredTypeName<ILayerSupport>
{
    static const char * Name() { return "ILayerSupport"; }
};

} // namespace armnn