89 lines
2.3 KiB
C++
89 lines
2.3 KiB
C++
/*
|
|
* Copyright (C) 2019-2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "runtime/device/root_device.h"
|
|
|
|
#include "core/debug_settings/debug_settings_manager.h"
|
|
#include "runtime/device/sub_device.h"
|
|
#include "runtime/helpers/device_helpers.h"
|
|
|
|
namespace NEO {
|
|
RootDevice::RootDevice(ExecutionEnvironment *executionEnvironment, uint32_t rootDeviceIndex) : Device(executionEnvironment), rootDeviceIndex(rootDeviceIndex) {}
|
|
|
|
RootDevice::~RootDevice() {
|
|
for (auto subdevice : subdevices) {
|
|
if (subdevice) {
|
|
subdevice->decRefInternal();
|
|
}
|
|
}
|
|
}
|
|
|
|
uint32_t RootDevice::getNumSubDevices() const {
|
|
return static_cast<uint32_t>(subdevices.size());
|
|
}
|
|
|
|
uint32_t RootDevice::getRootDeviceIndex() const {
|
|
return rootDeviceIndex;
|
|
}
|
|
|
|
uint32_t RootDevice::getNumAvailableDevices() const {
|
|
if (subdevices.empty()) {
|
|
return 1u;
|
|
}
|
|
return getNumSubDevices();
|
|
}
|
|
|
|
Device *RootDevice::getDeviceById(uint32_t deviceId) const {
|
|
UNRECOVERABLE_IF(deviceId >= getNumAvailableDevices());
|
|
if (subdevices.empty()) {
|
|
return const_cast<RootDevice *>(this);
|
|
}
|
|
return subdevices[deviceId];
|
|
};
|
|
|
|
SubDevice *RootDevice::createSubDevice(uint32_t subDeviceIndex) {
|
|
return Device::create<SubDevice>(executionEnvironment, subDeviceIndex, *this);
|
|
}
|
|
|
|
bool RootDevice::createDeviceImpl() {
|
|
auto numSubDevices = DeviceHelper::getSubDevicesCount(&getHardwareInfo());
|
|
if (numSubDevices == 1) {
|
|
numSubDevices = 0;
|
|
}
|
|
UNRECOVERABLE_IF(!subdevices.empty());
|
|
subdevices.resize(numSubDevices, nullptr);
|
|
for (auto i = 0u; i < numSubDevices; i++) {
|
|
|
|
auto subDevice = createSubDevice(i);
|
|
if (!subDevice) {
|
|
return false;
|
|
}
|
|
subDevice->incRefInternal();
|
|
subdevices[i] = subDevice;
|
|
}
|
|
auto status = Device::createDeviceImpl();
|
|
if (!status) {
|
|
return status;
|
|
}
|
|
return true;
|
|
}
|
|
bool RootDevice::isReleasable() {
|
|
return false;
|
|
};
|
|
DeviceBitfield RootDevice::getDeviceBitfield() const {
|
|
DeviceBitfield deviceBitfield{static_cast<uint32_t>(maxNBitValue(getNumAvailableDevices()))};
|
|
return deviceBitfield;
|
|
}
|
|
|
|
bool RootDevice::createEngines() {
|
|
if (!initializeRootCommandStreamReceiver()) {
|
|
return Device::createEngines();
|
|
}
|
|
return true;
|
|
}
|
|
} // namespace NEO
|