mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-29 09:03:14 +08:00
Decouple cl_device_id from Device class. Related-To: NEO-3938 Change-Id: I68543a753aea562f3b47ba0d23a059ff3cffa906 Signed-off-by: Filip Hazubski <filip.hazubski@intel.com>
31 lines
817 B
C++
31 lines
817 B
C++
/*
|
|
* Copyright (C) 2019-2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#include "runtime/device/device.h"
|
|
|
|
namespace NEO {
|
|
class RootDevice;
|
|
class SubDevice : public Device {
|
|
public:
|
|
constexpr static uint32_t unspecifiedSubDeviceIndex = std::numeric_limits<uint32_t>::max();
|
|
|
|
SubDevice(ExecutionEnvironment *executionEnvironment, uint32_t subDeviceIndex, RootDevice &rootDevice);
|
|
bool isReleasable() override;
|
|
uint32_t getNumAvailableDevices() const override;
|
|
uint32_t getRootDeviceIndex() const override;
|
|
Device *getDeviceById(uint32_t deviceId) const override;
|
|
|
|
uint32_t getSubDeviceIndex() const;
|
|
|
|
protected:
|
|
DeviceBitfield getDeviceBitfield() const override;
|
|
const uint32_t subDeviceIndex;
|
|
RootDevice &rootDevice;
|
|
};
|
|
} // namespace NEO
|