blob: 1799abfc335233a75de97066b56ec4b1e4e54a40 [file] [log] [blame]
arovir014424b0a2018-10-04 10:46:04 +01001//
2// Copyright © 2017 Arm Ltd. All rights reserved.
3// SPDX-License-Identifier: MIT
4//
5
6#include "RefBackend.hpp"
7
8namespace armnn
9{
10
11const std::string RefBackend::s_Id = "arm_reference";
12
13const std::string& RefBackend::GetId() const
14{
15 return s_Id;
16}
17
18const ILayerSupport& RefBackend::GetLayerSupport() const
19{
20 return m_LayerSupport;
21}
22
23std::unique_ptr<IWorkloadFactory> RefBackend::CreateWorkloadFactory() const
24{
25 // TODO implement
26 return nullptr;
27}
28
29} // namespace armnn