mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-29 09:03:14 +08:00
Related-To: NEO-3007 Change-Id: I27dd4b91e286ba1b75f4b50bec96d98df37983e1 Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
24 lines
402 B
C++
24 lines
402 B
C++
/*
|
|
* Copyright (C) 2019 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#include "runtime/device/device.h"
|
|
|
|
namespace NEO {
|
|
|
|
class SubDevice;
|
|
|
|
class RootDevice : public Device {
|
|
public:
|
|
RootDevice(ExecutionEnvironment *executionEnvironment, uint32_t deviceIndex);
|
|
~RootDevice() override;
|
|
|
|
protected:
|
|
std::vector<SubDevice *> subdevices;
|
|
};
|
|
} // namespace NEO
|