• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 //
2 // Copyright © 2017 Arm Ltd. All rights reserved.
3 // SPDX-License-Identifier: MIT
4 //
5 
6 #include "RefBackend.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     RefBackend::GetIdStatic(),
19     []()
__anonec9e58920202() 20     {
21         return IBackendInternalUniquePtr(new RefBackend);
22     }
23 };
24 
25 } // Anonymous namespace
26