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