mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-27 07:44:16 +08:00
Related-To: NEO-3007 Change-Id: I27dd4b91e286ba1b75f4b50bec96d98df37983e1 Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
21 lines
313 B
C++
21 lines
313 B
C++
/*
|
|
* Copyright (C) 2019 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#include "runtime/device/device.h"
|
|
|
|
namespace NEO {
|
|
class RootDevice;
|
|
class SubDevice : public Device {
|
|
public:
|
|
using Device::Device;
|
|
|
|
protected:
|
|
RootDevice *rootDevice = nullptr;
|
|
};
|
|
} // namespace NEO
|