1 // 2 // Copyright © 2017 Arm Ltd. All rights reserved. 3 // SPDX-License-Identifier: MIT 4 // 5 6 #pragma once 7 8 #include <armnn/BackendId.hpp> 9 #include <armnn/ILayerSupport.hpp> 10 11 namespace armnn 12 { 13 14 /// Convenience function to retrieve the ILayerSupport for a backend 15 std::shared_ptr<ILayerSupport> GetILayerSupportByBackendId(const armnn::BackendId& backend); 16 17 } 18