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