aboutsummaryrefslogtreecommitdiff
path: root/src/backends/BackendRegistry.cpp
blob: 68336c45b9f829fa5d90451cec5b8b93bfdd203b (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
//
// Copyright © 2017 Arm Ltd. All rights reserved.
// SPDX-License-Identifier: MIT
//

#include "BackendRegistry.hpp"
#include <armnn/Exceptions.hpp>

namespace armnn
{

BackendRegistry& BackendRegistry::Instance()
{
    static BackendRegistry instance;
    return instance;
}

void BackendRegistry::Register(const std::string& name, FactoryFunction factory)
{
    if (m_BackendFactories.count(name) > 0)
    {
        throw InvalidArgumentException(name + " already registered as backend");
    }

    m_BackendFactories[name] = factory;
}

BackendRegistry::FactoryFunction BackendRegistry::GetFactory(const std::string& name) const
{
    auto it = m_BackendFactories.find(name);
    if (it == m_BackendFactories.end())
    {
        throw InvalidArgumentException(name + " has no backend factory registered");
    }

    return it->second;
}

void BackendRegistry::Swap(BackendRegistry::FactoryStorage& other)
{
    BackendRegistry& instance = Instance();
    std::swap(instance.m_BackendFactories, other);
}

}