aboutsummaryrefslogtreecommitdiff
path: root/include/armnn/BackendHelper.hpp
blob: 6a6c8b9c154af0181a3b1e7e04a7b6ff2b85e3f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//
// Copyright © 2017 Arm Ltd. All rights reserved.
// SPDX-License-Identifier: MIT
//

#pragma once

#include <armnn/BackendId.hpp>
#include <armnn/ILayerSupport.hpp>

namespace armnn
{

/// Convenience function to retrieve the ILayerSupport for a backend
std::shared_ptr<ILayerSupport> GetILayerSupportByBackendId(const armnn::BackendId& backend);

}