xref: /aosp_15_r20/external/armnn/src/backends/tosaReference/TosaRefRegistryInitializer.cpp (revision 89c4ff92f2867872bb9e2354d150bf0c8c502810)
1 //
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 
10 namespace
11 {
12 
13 using namespace armnn;
14 
15 static BackendRegistry::StaticRegistryInitializer g_RegisterHelper
16 {
17     BackendRegistryInstance(),
18     TosaRefBackend::GetIdStatic(),
19     []()
__anon90d09aca0202() 20     {
21         return IBackendInternalUniquePtr(new TosaRefBackend);
22     }
23 };
24 
25 } // Anonymous namespace
26