aboutsummaryrefslogtreecommitdiff
path: root/src/armnn/DeviceSpec.hpp
blob: af0d8f578b64ac557038ef3699d0b6f8c3cfb4a4 (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
//
// Copyright © 2017 Arm Ltd. All rights reserved.
// SPDX-License-Identifier: MIT
//
#pragma once

#include <armnn/Types.hpp>
#include <set>
#include <vector>

namespace armnn
{

class DeviceSpec : public IDeviceSpec
{
public:
    DeviceSpec() {}
    virtual ~DeviceSpec() {}

    virtual std::vector<IBackendSharedPtr> GetBackends() const
    {
        return std::vector<IBackendSharedPtr>();
    }

    std::set<BackendId> m_SupportedComputeDevices;
};

}