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