aboutsummaryrefslogtreecommitdiff
path: root/src/backends/LayerSupportRegistry.cpp
blob: 63b4da73376c2c8871d1c3da873ead96e6bc2fa8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//
// Copyright © 2017 Arm Ltd. All rights reserved.
// SPDX-License-Identifier: MIT
//

#include "LayerSupportRegistry.hpp"

namespace armnn
{

LayerSupportRegistry& LayerSupportRegistryInstance()
{
    static LayerSupportRegistry instance;
    return instance;
}

} // namespace armnn