// // Copyright © 2017 Arm Ltd. All rights reserved. // SPDX-License-Identifier: MIT // #include "NeonBackend.hpp" #include "NeonWorkloadFactory.hpp" #include #include namespace armnn { namespace { static BackendRegistry::Helper g_RegisterHelper{ NeonBackend::GetIdStatic(), []() { return IBackendUniquePtr(new NeonBackend, &NeonBackend::Destroy); } }; } const BackendId& NeonBackend::GetIdStatic() { static const BackendId s_Id{"CpuAcc"}; 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