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