// // Copyright © 2017 Arm Ltd. All rights reserved. // SPDX-License-Identifier: MIT // #include "NeonBackend.hpp" #include "NeonWorkloadFactory.hpp" #include #include namespace armnn { namespace { static const BackendId s_Id{"CpuAcc"}; static BackendRegistry::Helper g_RegisterHelper{ s_Id, []() { return IBackendUniquePtr(new NeonBackend, &NeonBackend::Destroy); } }; } const BackendId& NeonBackend::GetId() const { return s_Id; } const ILayerSupport& NeonBackend::GetLayerSupport() const { return m_LayerSupport; } std::unique_ptr NeonBackend::CreateWorkloadFactory() const { return std::make_unique(); } void NeonBackend::Destroy(IBackend* backend) { delete boost::polymorphic_downcast(backend); } } // namespace armnn