ArmNN
 25.11
Loading...
Searching...
No Matches
ClRegistryInitializer.cpp
Go to the documentation of this file.
1//
2// Copyright © 2017 Arm Ltd. All rights reserved.
3// SPDX-License-Identifier: MIT
4//
5
6#include "ClBackend.hpp"
7
9
10namespace
11{
12
13using namespace armnn;
14
16{
19 []()
20 {
21 // Check if we have a CustomMemoryAllocator associated with the backend
22 // and if so register it with the backend.
23 auto customAllocators = BackendRegistryInstance().GetAllocators();
24 auto allocatorIterator = customAllocators.find(ClBackend::GetIdStatic());
25 if (allocatorIterator != customAllocators.end())
26 {
27 return IBackendInternalUniquePtr(new ClBackend(allocatorIterator->second));
28 }
30 }
31};
32
33} // Anonymous namespace
std::unordered_map< BackendId, std::shared_ptr< ICustomAllocator > > GetAllocators()
static const BackendId & GetIdStatic()
Definition ClBackend.cpp:44
Copyright (c) 2021 ARM Limited and Contributors.
std::unique_ptr< IBackendInternal > IBackendInternalUniquePtr
BackendRegistry & BackendRegistryInstance()