aboutsummaryrefslogtreecommitdiff
path: root/src/armnn/DeviceSpec.hpp
blob: 2eb817479f19bf428e107ef1843d1a2022427d39 (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.
// SPDX-License-Identifier: MIT
//
#pragma once

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

namespace armnn
{

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

    std::set<Compute> m_SupportedComputeDevices;
};

}