aboutsummaryrefslogtreecommitdiff
path: root/src/backends/neon/NeonBackend.cpp
blob: b7102956df519c059d86ada64c33ec8cae8ee879 (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
46
47
48
//
// Copyright © 2017 Arm Ltd. All rights reserved.
// SPDX-License-Identifier: MIT
//

#include "NeonBackend.hpp"
#include "NeonBackendId.hpp"
#include "NeonWorkloadFactory.hpp"

#include <backends/BackendRegistry.hpp>

#include <boost/cast.hpp>

namespace armnn
{

namespace
{

static StaticRegistryInitializer<BackendRegistry> g_RegisterHelper
{
    BackendRegistryInstance(),
    NeonBackend::GetIdStatic(),
    []()
    {
        return IBackendUniquePtr(new NeonBackend, &NeonBackend::Destroy);
    }
};

}

const BackendId& NeonBackend::GetIdStatic()
{
    static const BackendId s_Id{NeonBackendId()};
    return s_Id;
}

std::unique_ptr<IWorkloadFactory> NeonBackend::CreateWorkloadFactory() const
{
    return std::make_unique<NeonWorkloadFactory>();
}

void NeonBackend::Destroy(IBackend* backend)
{
    delete boost::polymorphic_downcast<NeonBackend*>(backend);
}

} // namespace armnn