// // Copyright © 2017 Arm Ltd. All rights reserved. // SPDX-License-Identifier: MIT // #pragma once #include "IBackendInternal.hpp" #include "RegistryCommon.hpp" #include namespace armnn { using BackendRegistry = RegistryCommon; BackendRegistry& BackendRegistryInstance(); template <> struct RegisteredTypeName { static const char * Name() { return "IBackend"; } }; } // namespace armnn