aboutsummaryrefslogtreecommitdiff
path: root/src/armnn/DeviceSpec.hpp
blob: 37064384825ad5d58a2f740e4a5b09f95c270e5d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//
// Copyright © 2017 Arm Ltd. All rights reserved.
// See LICENSE file in the project root for full license information.
//
#pragma once

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

namespace armnn
{

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

    std::set<Compute> m_SupportedComputeDevices;
};

}