aboutsummaryrefslogtreecommitdiff
path: root/src/backends/reference/RefBackend.cpp
blob: 1799abfc335233a75de97066b56ec4b1e4e54a40 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
//
// Copyright © 2017 Arm Ltd. All rights reserved.
// SPDX-License-Identifier: MIT
//

#include "RefBackend.hpp"

namespace armnn
{

const std::string RefBackend::s_Id = "arm_reference";

const std::string& RefBackend::GetId() const
{
    return s_Id;
}

const ILayerSupport& RefBackend::GetLayerSupport() const
{
    return m_LayerSupport;
}

std::unique_ptr<IWorkloadFactory> RefBackend::CreateWorkloadFactory() const
{
    // TODO implement
    return nullptr;
}

} // namespace armnn