blob: 71052f7b248c865804019c23d898b033661f768b [file] [log] [blame]
Francis Murtaghbf354142022-08-12 13:54:17 +01001//
2// Copyright © 2022 Arm Ltd and Contributors. All rights reserved.
3// SPDX-License-Identifier: MIT
4//
5
6#include "TosaRefBackend.hpp"
7
8#include <armnn/BackendRegistry.hpp>
9
10namespace
11{
12
13using namespace armnn;
14
15static BackendRegistry::StaticRegistryInitializer g_RegisterHelper
16{
17 BackendRegistryInstance(),
18 TosaRefBackend::GetIdStatic(),
19 []()
20 {
21 return IBackendInternalUniquePtr(new TosaRefBackend);
22 }
23};
24
25} // Anonymous namespace