993 lines
36 KiB
C++
993 lines
36 KiB
C++
/*
|
|
* Copyright (C) 2018-2023 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "shared/source/device/device.h"
|
|
|
|
#include "shared/source/command_stream/command_stream_receiver.h"
|
|
#include "shared/source/command_stream/experimental_command_buffer.h"
|
|
#include "shared/source/command_stream/preemption.h"
|
|
#include "shared/source/command_stream/submission_status.h"
|
|
#include "shared/source/debug_settings/debug_settings_manager.h"
|
|
#include "shared/source/debugger/debugger_l0.h"
|
|
#include "shared/source/device/sub_device.h"
|
|
#include "shared/source/execution_environment/execution_environment.h"
|
|
#include "shared/source/execution_environment/root_device_environment.h"
|
|
#include "shared/source/gmm_helper/gmm_helper.h"
|
|
#include "shared/source/helpers/api_specific_config.h"
|
|
#include "shared/source/helpers/gfx_core_helper.h"
|
|
#include "shared/source/helpers/ray_tracing_helper.h"
|
|
#include "shared/source/memory_manager/allocation_properties.h"
|
|
#include "shared/source/memory_manager/memory_manager.h"
|
|
#include "shared/source/os_interface/driver_info.h"
|
|
#include "shared/source/os_interface/os_context.h"
|
|
#include "shared/source/os_interface/os_interface.h"
|
|
#include "shared/source/os_interface/os_time.h"
|
|
#include "shared/source/program/sync_buffer_handler.h"
|
|
#include "shared/source/source_level_debugger/source_level_debugger.h"
|
|
#include "shared/source/utilities/software_tags_manager.h"
|
|
|
|
namespace NEO {
|
|
|
|
decltype(&PerformanceCounters::create) Device::createPerformanceCountersFunc = PerformanceCounters::create;
|
|
extern CommandStreamReceiver *createCommandStream(ExecutionEnvironment &executionEnvironment,
|
|
uint32_t rootDeviceIndex,
|
|
const DeviceBitfield deviceBitfield);
|
|
|
|
Device::Device(ExecutionEnvironment *executionEnvironment, const uint32_t rootDeviceIndex)
|
|
: executionEnvironment(executionEnvironment), rootDeviceIndex(rootDeviceIndex) {
|
|
this->executionEnvironment->incRefInternal();
|
|
this->executionEnvironment->rootDeviceEnvironments[rootDeviceIndex]->setDummyBlitProperties(rootDeviceIndex);
|
|
|
|
if (DebugManager.flags.NumberOfRegularContextsPerEngine.get() > 1) {
|
|
this->numberOfRegularContextsPerEngine = static_cast<uint32_t>(DebugManager.flags.NumberOfRegularContextsPerEngine.get());
|
|
}
|
|
}
|
|
|
|
Device::~Device() {
|
|
finalizeRayTracing();
|
|
|
|
DEBUG_BREAK_IF(nullptr == executionEnvironment->memoryManager.get());
|
|
|
|
if (performanceCounters) {
|
|
performanceCounters->shutdown();
|
|
}
|
|
|
|
for (auto &engine : allEngines) {
|
|
engine.commandStreamReceiver->flushBatchedSubmissions();
|
|
}
|
|
allEngines.clear();
|
|
|
|
for (auto subdevice : subdevices) {
|
|
if (subdevice) {
|
|
delete subdevice;
|
|
}
|
|
}
|
|
subdevices.clear();
|
|
|
|
syncBufferHandler.reset();
|
|
commandStreamReceivers.clear();
|
|
executionEnvironment->memoryManager->waitForDeletions();
|
|
|
|
executionEnvironment->decRefInternal();
|
|
}
|
|
|
|
SubDevice *Device::createSubDevice(uint32_t subDeviceIndex) {
|
|
return Device::create<SubDevice>(executionEnvironment, subDeviceIndex, *getRootDevice());
|
|
}
|
|
|
|
SubDevice *Device::createEngineInstancedSubDevice(uint32_t subDeviceIndex, aub_stream::EngineType engineType) {
|
|
return Device::create<SubDevice>(executionEnvironment, subDeviceIndex, *getRootDevice(), engineType);
|
|
}
|
|
|
|
bool Device::genericSubDevicesAllowed() {
|
|
auto deviceMask = executionEnvironment->rootDeviceEnvironments[getRootDeviceIndex()]->deviceAffinityMask.getGenericSubDevicesMask();
|
|
uint32_t subDeviceCount = GfxCoreHelper::getSubDevicesCount(&getHardwareInfo());
|
|
deviceBitfield = maxNBitValue(subDeviceCount);
|
|
deviceBitfield &= deviceMask;
|
|
numSubDevices = static_cast<uint32_t>(deviceBitfield.count());
|
|
if (numSubDevices == 1) {
|
|
numSubDevices = 0;
|
|
}
|
|
|
|
return (numSubDevices > 0);
|
|
}
|
|
|
|
bool Device::engineInstancedSubDevicesAllowed() {
|
|
bool notAllowed = !DebugManager.flags.EngineInstancedSubDevices.get();
|
|
notAllowed |= engineInstanced;
|
|
notAllowed |= (getHardwareInfo().gtSystemInfo.CCSInfo.NumberOfCCSEnabled < 2);
|
|
notAllowed |= ((GfxCoreHelper::getSubDevicesCount(&getHardwareInfo()) < 2) && (!DebugManager.flags.AllowSingleTileEngineInstancedSubDevices.get()));
|
|
|
|
if (notAllowed) {
|
|
return false;
|
|
}
|
|
|
|
UNRECOVERABLE_IF(deviceBitfield.count() != 1);
|
|
uint32_t subDeviceIndex = Math::log2(static_cast<uint32_t>(deviceBitfield.to_ulong()));
|
|
|
|
auto enginesMask = getRootDeviceEnvironment().deviceAffinityMask.getEnginesMask(subDeviceIndex);
|
|
auto ccsCount = getHardwareInfo().gtSystemInfo.CCSInfo.NumberOfCCSEnabled;
|
|
|
|
numSubDevices = std::min(ccsCount, static_cast<uint32_t>(enginesMask.count()));
|
|
|
|
if (numSubDevices == 1) {
|
|
numSubDevices = 0;
|
|
}
|
|
|
|
return (numSubDevices > 0);
|
|
}
|
|
|
|
bool Device::createEngineInstancedSubDevices() {
|
|
UNRECOVERABLE_IF(deviceBitfield.count() != 1);
|
|
UNRECOVERABLE_IF(!subdevices.empty());
|
|
|
|
uint32_t subDeviceIndex = Math::log2(static_cast<uint32_t>(deviceBitfield.to_ulong()));
|
|
|
|
auto enginesMask = getRootDeviceEnvironment().deviceAffinityMask.getEnginesMask(subDeviceIndex);
|
|
auto ccsCount = getHardwareInfo().gtSystemInfo.CCSInfo.NumberOfCCSEnabled;
|
|
|
|
subdevices.resize(ccsCount, nullptr);
|
|
|
|
for (uint32_t i = 0; i < ccsCount; i++) {
|
|
if (!enginesMask.test(i)) {
|
|
continue;
|
|
}
|
|
|
|
auto engineType = static_cast<aub_stream::EngineType>(aub_stream::EngineType::ENGINE_CCS + i);
|
|
auto subDevice = createEngineInstancedSubDevice(subDeviceIndex, engineType);
|
|
UNRECOVERABLE_IF(!subDevice);
|
|
subdevices[i] = subDevice;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
bool Device::createGenericSubDevices() {
|
|
UNRECOVERABLE_IF(!subdevices.empty());
|
|
uint32_t subDeviceCount = GfxCoreHelper::getSubDevicesCount(&getHardwareInfo());
|
|
|
|
subdevices.resize(subDeviceCount, nullptr);
|
|
|
|
for (auto i = 0u; i < subDeviceCount; i++) {
|
|
if (!deviceBitfield.test(i)) {
|
|
continue;
|
|
}
|
|
auto subDevice = createSubDevice(i);
|
|
if (!subDevice) {
|
|
return false;
|
|
}
|
|
subdevices[i] = subDevice;
|
|
}
|
|
|
|
hasGenericSubDevices = true;
|
|
return true;
|
|
}
|
|
|
|
bool Device::createSubDevices() {
|
|
if (genericSubDevicesAllowed()) {
|
|
return createGenericSubDevices();
|
|
}
|
|
|
|
if (engineInstancedSubDevicesAllowed()) {
|
|
return createEngineInstancedSubDevices();
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
void Device::setAsEngineInstanced() {
|
|
if (subdevices.size() > 0) {
|
|
return;
|
|
}
|
|
|
|
UNRECOVERABLE_IF(deviceBitfield.count() != 1);
|
|
|
|
uint32_t subDeviceIndex = Math::log2(static_cast<uint32_t>(deviceBitfield.to_ulong()));
|
|
auto enginesMask = getRootDeviceEnvironment().deviceAffinityMask.getEnginesMask(subDeviceIndex);
|
|
|
|
if (enginesMask.count() != 1) {
|
|
return;
|
|
}
|
|
|
|
auto ccsCount = getHardwareInfo().gtSystemInfo.CCSInfo.NumberOfCCSEnabled;
|
|
|
|
for (uint32_t i = 0; i < ccsCount; i++) {
|
|
if (!enginesMask.test(i)) {
|
|
continue;
|
|
}
|
|
|
|
UNRECOVERABLE_IF(engineInstanced);
|
|
engineInstanced = true;
|
|
engineInstancedType = static_cast<aub_stream::EngineType>(aub_stream::EngineType::ENGINE_CCS + i);
|
|
}
|
|
|
|
UNRECOVERABLE_IF(!engineInstanced);
|
|
}
|
|
|
|
bool Device::createDeviceImpl() {
|
|
if (!createSubDevices()) {
|
|
return false;
|
|
}
|
|
|
|
setAsEngineInstanced();
|
|
|
|
auto &hwInfo = getHardwareInfo();
|
|
preemptionMode = PreemptionHelper::getDefaultPreemptionMode(hwInfo);
|
|
|
|
if (!getDebugger()) {
|
|
this->executionEnvironment->rootDeviceEnvironments[getRootDeviceIndex()]->initDebugger();
|
|
}
|
|
|
|
auto &gfxCoreHelper = getGfxCoreHelper();
|
|
auto &productHelper = getProductHelper();
|
|
if (getDebugger() && gfxCoreHelper.disableL3CacheForDebug(hwInfo, productHelper)) {
|
|
getGmmHelper()->forceAllResourcesUncached();
|
|
}
|
|
|
|
if (!createEngines()) {
|
|
return false;
|
|
}
|
|
|
|
getDefaultEngine().osContext->setDefaultContext(true);
|
|
|
|
for (auto &engine : allEngines) {
|
|
auto commandStreamReceiver = engine.commandStreamReceiver;
|
|
commandStreamReceiver->postInitFlagsSetup();
|
|
}
|
|
|
|
uint32_t defaultEngineIndexWithinMemoryManager = 0;
|
|
for (auto engineIndex = 0u; engineIndex < executionEnvironment->memoryManager->getRegisteredEnginesCount(); engineIndex++) {
|
|
OsContext *engine = executionEnvironment->memoryManager->getRegisteredEngines()[engineIndex].osContext;
|
|
if (engine == getDefaultEngine().osContext) {
|
|
defaultEngineIndexWithinMemoryManager = engineIndex;
|
|
break;
|
|
}
|
|
}
|
|
executionEnvironment->memoryManager->setDefaultEngineIndex(getRootDeviceIndex(), defaultEngineIndexWithinMemoryManager);
|
|
|
|
getRootDeviceEnvironmentRef().initOsTime();
|
|
|
|
initializeCaps();
|
|
|
|
if (getOSTime()->getOSInterface()) {
|
|
if (hwInfo.capabilityTable.instrumentationEnabled) {
|
|
performanceCounters = createPerformanceCountersFunc(this);
|
|
}
|
|
}
|
|
|
|
executionEnvironment->memoryManager->setForce32BitAllocations(getDeviceInfo().force32BitAddressess);
|
|
|
|
if (DebugManager.flags.EnableExperimentalCommandBuffer.get() > 0) {
|
|
for (auto &engine : allEngines) {
|
|
auto csr = engine.commandStreamReceiver;
|
|
csr->setExperimentalCmdBuffer(std::make_unique<ExperimentalCommandBuffer>(csr, getDeviceInfo().profilingTimerResolution));
|
|
}
|
|
}
|
|
|
|
if (DebugManager.flags.EnableSWTags.get() && !getRootDeviceEnvironment().tagsManager->isInitialized()) {
|
|
getRootDeviceEnvironment().tagsManager->initialize(*this);
|
|
}
|
|
|
|
createBindlessHeapsHelper();
|
|
if (!isEngineInstanced()) {
|
|
uuid.isValid = false;
|
|
|
|
if (DebugManager.flags.EnableChipsetUniqueUUID.get() != 0) {
|
|
if (gfxCoreHelper.isChipsetUniqueUUIDSupported()) {
|
|
|
|
uuid.isValid = productHelper.getUuid(this, uuid.id);
|
|
}
|
|
}
|
|
|
|
if (!uuid.isValid && getRootDeviceEnvironment().osInterface != nullptr) {
|
|
PhysicalDevicePciBusInfo pciBusInfo = getRootDeviceEnvironment().osInterface->getDriverModel()->getPciBusInfo();
|
|
uuid.isValid = generateUuidFromPciBusInfo(pciBusInfo, uuid.id);
|
|
}
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
bool Device::createEngines() {
|
|
if (engineInstanced) {
|
|
return createEngine(0, {engineInstancedType, EngineUsage::Regular});
|
|
}
|
|
|
|
auto &gfxCoreHelper = getGfxCoreHelper();
|
|
auto gpgpuEngines = gfxCoreHelper.getGpgpuEngineInstances(getRootDeviceEnvironment());
|
|
|
|
uint32_t deviceCsrIndex = 0;
|
|
for (auto &engine : gpgpuEngines) {
|
|
if (!createEngine(deviceCsrIndex++, engine)) {
|
|
return false;
|
|
}
|
|
}
|
|
return true;
|
|
}
|
|
|
|
void Device::addEngineToEngineGroup(EngineControl &engine) {
|
|
auto &hardwareInfo = this->getHardwareInfo();
|
|
auto &gfxCoreHelper = getGfxCoreHelper();
|
|
auto &rootDeviceEnvironment = this->getRootDeviceEnvironment();
|
|
|
|
const EngineGroupType engineGroupType = gfxCoreHelper.getEngineGroupType(engine.getEngineType(), engine.getEngineUsage(), hardwareInfo);
|
|
|
|
if (!gfxCoreHelper.isSubDeviceEngineSupported(rootDeviceEnvironment, getDeviceBitfield(), engine.getEngineType())) {
|
|
return;
|
|
}
|
|
|
|
if (EngineHelper::isCopyOnlyEngineType(engineGroupType) && DebugManager.flags.EnableBlitterOperationsSupport.get() == 0) {
|
|
return;
|
|
}
|
|
|
|
if (this->regularEngineGroups.empty() || this->regularEngineGroups.back().engineGroupType != engineGroupType) {
|
|
this->regularEngineGroups.push_back(EngineGroupT{});
|
|
this->regularEngineGroups.back().engineGroupType = engineGroupType;
|
|
}
|
|
|
|
auto &engines = this->regularEngineGroups.back().engines;
|
|
|
|
if (engines.size() > 0 && engines.back().getEngineType() == engine.getEngineType()) {
|
|
return; // Type already added. Exposing multiple contexts for the same engine is disabled.
|
|
}
|
|
|
|
engines.push_back(engine);
|
|
}
|
|
|
|
std::unique_ptr<CommandStreamReceiver> Device::createCommandStreamReceiver() const {
|
|
return std::unique_ptr<CommandStreamReceiver>(createCommandStream(*executionEnvironment, getRootDeviceIndex(), getDeviceBitfield()));
|
|
}
|
|
|
|
bool Device::createEngine(uint32_t deviceCsrIndex, EngineTypeUsage engineTypeUsage) {
|
|
const auto &hwInfo = getHardwareInfo();
|
|
const auto engineType = engineTypeUsage.first;
|
|
const auto engineUsage = engineTypeUsage.second;
|
|
const auto defaultEngineType = engineInstanced ? this->engineInstancedType : getChosenEngineType(hwInfo);
|
|
const bool isDefaultEngine = defaultEngineType == engineType && engineUsage == EngineUsage::Regular;
|
|
const bool createAsEngineInstanced = engineInstanced && EngineHelpers::isCcs(engineType);
|
|
|
|
UNRECOVERABLE_IF(EngineHelpers::isBcs(engineType) && !hwInfo.capabilityTable.blitterOperationsSupported);
|
|
|
|
std::unique_ptr<CommandStreamReceiver> commandStreamReceiver = createCommandStreamReceiver();
|
|
if (!commandStreamReceiver) {
|
|
return false;
|
|
}
|
|
|
|
bool internalUsage = (engineUsage == EngineUsage::Internal);
|
|
if (internalUsage) {
|
|
commandStreamReceiver->initializeDefaultsForInternalEngine();
|
|
}
|
|
|
|
if (commandStreamReceiver->needsPageTableManager()) {
|
|
commandStreamReceiver->createPageTableManager();
|
|
}
|
|
|
|
EngineDescriptor engineDescriptor(engineTypeUsage, getDeviceBitfield(), preemptionMode, false, createAsEngineInstanced);
|
|
|
|
auto osContext = executionEnvironment->memoryManager->createAndRegisterOsContext(commandStreamReceiver.get(), engineDescriptor);
|
|
commandStreamReceiver->setupContext(*osContext);
|
|
if (osContext->isImmediateContextInitializationEnabled(isDefaultEngine)) {
|
|
if (!commandStreamReceiver->initializeResources()) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
if (!commandStreamReceiver->initializeTagAllocation()) {
|
|
return false;
|
|
}
|
|
|
|
if (!commandStreamReceiver->createGlobalFenceAllocation()) {
|
|
return false;
|
|
}
|
|
|
|
commandStreamReceiver->createKernelArgsBufferAllocation();
|
|
|
|
if (preemptionMode == PreemptionMode::MidThread && !commandStreamReceiver->createPreemptionAllocation()) {
|
|
return false;
|
|
}
|
|
|
|
if (isDefaultEngine) {
|
|
bool defaultEngineAlreadySet = (allEngines.size() > defaultEngineIndex) && (allEngines[defaultEngineIndex].getEngineType() == engineType);
|
|
|
|
if (!defaultEngineAlreadySet) {
|
|
defaultEngineIndex = deviceCsrIndex;
|
|
|
|
if (osContext->isDebuggableContext() ||
|
|
this->isInitDeviceWithFirstSubmissionSupported(commandStreamReceiver->getType())) {
|
|
if (SubmissionStatus::SUCCESS != commandStreamReceiver->initializeDeviceWithFirstSubmission()) {
|
|
return false;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
if (EngineHelpers::isBcs(engineType) && (defaultBcsEngineIndex == std::numeric_limits<uint32_t>::max()) && (engineUsage == EngineUsage::Regular)) {
|
|
defaultBcsEngineIndex = deviceCsrIndex;
|
|
}
|
|
|
|
EngineControl engine{commandStreamReceiver.get(), osContext};
|
|
allEngines.push_back(engine);
|
|
if (engineUsage == EngineUsage::Regular) {
|
|
addEngineToEngineGroup(engine);
|
|
}
|
|
|
|
commandStreamReceivers.push_back(std::move(commandStreamReceiver));
|
|
|
|
return true;
|
|
}
|
|
|
|
const HardwareInfo &Device::getHardwareInfo() const { return *getRootDeviceEnvironment().getHardwareInfo(); }
|
|
|
|
const DeviceInfo &Device::getDeviceInfo() const {
|
|
return deviceInfo;
|
|
}
|
|
|
|
double Device::getProfilingTimerResolution() {
|
|
return getOSTime()->getDynamicDeviceTimerResolution(getHardwareInfo());
|
|
}
|
|
|
|
uint64_t Device::getProfilingTimerClock() {
|
|
return getOSTime()->getDynamicDeviceTimerClock(getHardwareInfo());
|
|
}
|
|
|
|
bool Device::isBcsSplitSupported() {
|
|
auto &productHelper = getProductHelper();
|
|
auto bcsSplit = productHelper.isBlitSplitEnqueueWARequired(getHardwareInfo()) &&
|
|
ApiSpecificConfig::isBcsSplitWaSupported() &&
|
|
Device::isBlitSplitEnabled();
|
|
|
|
if (DebugManager.flags.SplitBcsCopy.get() != -1) {
|
|
bcsSplit = DebugManager.flags.SplitBcsCopy.get();
|
|
}
|
|
|
|
return bcsSplit;
|
|
}
|
|
|
|
bool Device::isInitDeviceWithFirstSubmissionSupported(CommandStreamReceiverType csrType) {
|
|
return !this->executionEnvironment->areMetricsEnabled() &&
|
|
getProductHelper().isInitDeviceWithFirstSubmissionRequired(getHardwareInfo()) &&
|
|
Device::isInitDeviceWithFirstSubmissionEnabled(csrType);
|
|
}
|
|
|
|
double Device::getPlatformHostTimerResolution() const {
|
|
if (getOSTime()) {
|
|
return getOSTime()->getHostTimerResolution();
|
|
}
|
|
|
|
return 0.0;
|
|
}
|
|
|
|
GFXCORE_FAMILY Device::getRenderCoreFamily() const {
|
|
return this->getHardwareInfo().platform.eRenderCoreFamily;
|
|
}
|
|
|
|
bool Device::isDebuggerActive() const {
|
|
return deviceInfo.debuggerActive;
|
|
}
|
|
|
|
Debugger *Device::getDebugger() const {
|
|
return getRootDeviceEnvironment().debugger.get();
|
|
}
|
|
|
|
bool Device::areSharedSystemAllocationsAllowed() const {
|
|
auto sharedSystemAllocationsSupport = static_cast<bool>(getHardwareInfo().capabilityTable.sharedSystemMemCapabilities);
|
|
if (DebugManager.flags.EnableSharedSystemUsmSupport.get() != -1) {
|
|
sharedSystemAllocationsSupport = DebugManager.flags.EnableSharedSystemUsmSupport.get();
|
|
}
|
|
return sharedSystemAllocationsSupport;
|
|
}
|
|
|
|
size_t Device::getEngineGroupIndexFromEngineGroupType(EngineGroupType engineGroupType) const {
|
|
for (size_t i = 0; i < regularEngineGroups.size(); i++) {
|
|
if (regularEngineGroups[i].engineGroupType == engineGroupType) {
|
|
return i;
|
|
}
|
|
}
|
|
UNRECOVERABLE_IF(true);
|
|
return 0;
|
|
}
|
|
|
|
EngineControl *Device::tryGetEngine(aub_stream::EngineType engineType, EngineUsage engineUsage) {
|
|
for (auto &engine : allEngines) {
|
|
if ((engine.getEngineType() == engineType) &&
|
|
(engine.getEngineUsage() == engineUsage)) {
|
|
return &engine;
|
|
}
|
|
}
|
|
|
|
if (DebugManager.flags.OverrideInvalidEngineWithDefault.get()) {
|
|
return &allEngines[0];
|
|
}
|
|
return nullptr;
|
|
}
|
|
|
|
EngineControl &Device::getEngine(aub_stream::EngineType engineType, EngineUsage engineUsage) {
|
|
auto engine = tryGetEngine(engineType, engineUsage);
|
|
UNRECOVERABLE_IF(!engine);
|
|
return *engine;
|
|
}
|
|
|
|
EngineControl &Device::getEngine(uint32_t index) {
|
|
UNRECOVERABLE_IF(index >= allEngines.size());
|
|
return allEngines[index];
|
|
}
|
|
|
|
bool Device::getDeviceAndHostTimer(uint64_t *deviceTimestamp, uint64_t *hostTimestamp) const {
|
|
TimeStampData timeStamp;
|
|
auto retVal = getOSTime()->getCpuGpuTime(&timeStamp);
|
|
if (retVal) {
|
|
*hostTimestamp = timeStamp.CPUTimeinNS;
|
|
if (DebugManager.flags.EnableDeviceBasedTimestamps.get()) {
|
|
auto resolution = getOSTime()->getDynamicDeviceTimerResolution(getHardwareInfo());
|
|
*deviceTimestamp = static_cast<uint64_t>(timeStamp.GPUTimeStamp * resolution);
|
|
} else
|
|
*deviceTimestamp = *hostTimestamp;
|
|
}
|
|
return retVal;
|
|
}
|
|
|
|
bool Device::getHostTimer(uint64_t *hostTimestamp) const {
|
|
return getOSTime()->getCpuTime(hostTimestamp);
|
|
}
|
|
|
|
uint32_t Device::getNumGenericSubDevices() const {
|
|
return (hasRootCsr() ? getNumSubDevices() : 0);
|
|
}
|
|
|
|
Device *Device::getSubDevice(uint32_t deviceId) const {
|
|
UNRECOVERABLE_IF(deviceId >= subdevices.size());
|
|
return subdevices[deviceId];
|
|
}
|
|
|
|
Device *Device::getNearestGenericSubDevice(uint32_t deviceId) {
|
|
/*
|
|
* EngineInstanced: Upper level
|
|
* Generic SubDevice: 'this'
|
|
* RootCsr Device: Next level SubDevice (generic)
|
|
*/
|
|
|
|
if (engineInstanced) {
|
|
return getRootDevice()->getNearestGenericSubDevice(Math::log2(static_cast<uint32_t>(deviceBitfield.to_ulong())));
|
|
}
|
|
|
|
if (subdevices.empty() || !hasRootCsr()) {
|
|
return this;
|
|
}
|
|
UNRECOVERABLE_IF(deviceId >= subdevices.size());
|
|
return subdevices[deviceId];
|
|
}
|
|
|
|
BindlessHeapsHelper *Device::getBindlessHeapsHelper() const {
|
|
return getRootDeviceEnvironment().getBindlessHeapsHelper();
|
|
}
|
|
|
|
GmmClientContext *Device::getGmmClientContext() const {
|
|
return getGmmHelper()->getClientContext();
|
|
}
|
|
|
|
void Device::allocateSyncBufferHandler() {
|
|
static std::mutex mutex;
|
|
std::unique_lock<std::mutex> lock(mutex);
|
|
if (syncBufferHandler.get() == nullptr) {
|
|
syncBufferHandler = std::make_unique<SyncBufferHandler>(*this);
|
|
UNRECOVERABLE_IF(syncBufferHandler.get() == nullptr);
|
|
}
|
|
}
|
|
|
|
uint64_t Device::getGlobalMemorySize(uint32_t deviceBitfield) const {
|
|
auto globalMemorySize = getMemoryManager()->isLocalMemorySupported(this->getRootDeviceIndex())
|
|
? getMemoryManager()->getLocalMemorySize(this->getRootDeviceIndex(), deviceBitfield)
|
|
: getMemoryManager()->getSystemSharedMemory(this->getRootDeviceIndex());
|
|
globalMemorySize = std::min(globalMemorySize, getMemoryManager()->getMaxApplicationAddress() + 1);
|
|
double percentOfGlobalMemoryAvailable = getPercentOfGlobalMemoryAvailable();
|
|
globalMemorySize = static_cast<uint64_t>(static_cast<double>(globalMemorySize) * percentOfGlobalMemoryAvailable);
|
|
|
|
return globalMemorySize;
|
|
}
|
|
|
|
double Device::getPercentOfGlobalMemoryAvailable() const {
|
|
if (DebugManager.flags.ClDeviceGlobalMemSizeAvailablePercent.get() != -1) {
|
|
return 0.01 * static_cast<double>(DebugManager.flags.ClDeviceGlobalMemSizeAvailablePercent.get());
|
|
}
|
|
return getMemoryManager()->getPercentOfGlobalMemoryAvailable(this->getRootDeviceIndex());
|
|
}
|
|
|
|
NEO::SourceLevelDebugger *Device::getSourceLevelDebugger() {
|
|
auto debugger = getDebugger();
|
|
if (debugger) {
|
|
return debugger->isLegacy() ? static_cast<NEO::SourceLevelDebugger *>(debugger) : nullptr;
|
|
}
|
|
return nullptr;
|
|
}
|
|
|
|
NEO::DebuggerL0 *Device::getL0Debugger() {
|
|
auto debugger = getDebugger();
|
|
if (debugger) {
|
|
return !debugger->isLegacy() ? static_cast<NEO::DebuggerL0 *>(debugger) : nullptr;
|
|
}
|
|
return nullptr;
|
|
}
|
|
|
|
const std::vector<EngineControl> &Device::getAllEngines() const {
|
|
return this->allEngines;
|
|
}
|
|
|
|
const RootDeviceEnvironment &Device::getRootDeviceEnvironment() const {
|
|
return *executionEnvironment->rootDeviceEnvironments[getRootDeviceIndex()];
|
|
}
|
|
|
|
RootDeviceEnvironment &Device::getRootDeviceEnvironmentRef() const {
|
|
return *executionEnvironment->rootDeviceEnvironments[getRootDeviceIndex()];
|
|
}
|
|
|
|
bool Device::isFullRangeSvm() const {
|
|
return getRootDeviceEnvironment().isFullRangeSvm();
|
|
}
|
|
|
|
EngineControl &Device::getInternalEngine() {
|
|
if (this->allEngines[0].commandStreamReceiver->getType() != CommandStreamReceiverType::CSR_HW) {
|
|
return this->getDefaultEngine();
|
|
}
|
|
|
|
auto engineType = getChosenEngineType(getHardwareInfo());
|
|
|
|
return this->getNearestGenericSubDevice(0)->getEngine(engineType, EngineUsage::Internal);
|
|
}
|
|
|
|
EngineControl &Device::getNextEngineForCommandQueue() {
|
|
this->initializeEngineRoundRobinControls();
|
|
|
|
const auto &defaultEngine = this->getDefaultEngine();
|
|
|
|
const auto &hardwareInfo = this->getHardwareInfo();
|
|
const auto &gfxCoreHelper = getGfxCoreHelper();
|
|
const auto engineGroupType = gfxCoreHelper.getEngineGroupType(defaultEngine.getEngineType(), defaultEngine.getEngineUsage(), hardwareInfo);
|
|
|
|
const auto defaultEngineGroupIndex = this->getEngineGroupIndexFromEngineGroupType(engineGroupType);
|
|
auto &engineGroup = this->getRegularEngineGroups()[defaultEngineGroupIndex];
|
|
|
|
auto engineIndex = 0u;
|
|
do {
|
|
engineIndex = (this->regularCommandQueuesCreatedWithinDeviceCount++ / this->queuesPerEngineCount) % engineGroup.engines.size();
|
|
} while (!this->availableEnginesForCommandQueueusRoundRobin.test(engineIndex));
|
|
return engineGroup.engines[engineIndex];
|
|
}
|
|
|
|
EngineControl *Device::getInternalCopyEngine() {
|
|
if (!getHardwareInfo().capabilityTable.blitterOperationsSupported) {
|
|
return nullptr;
|
|
}
|
|
|
|
auto expectedEngine = aub_stream::ENGINE_BCS;
|
|
|
|
if (DebugManager.flags.ForceBCSForInternalCopyEngine.get() != -1) {
|
|
expectedEngine = EngineHelpers::mapBcsIndexToEngineType(DebugManager.flags.ForceBCSForInternalCopyEngine.get(), true);
|
|
}
|
|
|
|
for (auto &engine : allEngines) {
|
|
if (engine.osContext->getEngineType() == expectedEngine &&
|
|
engine.osContext->isInternalEngine()) {
|
|
return &engine;
|
|
}
|
|
}
|
|
return nullptr;
|
|
}
|
|
|
|
RTDispatchGlobalsInfo *Device::getRTDispatchGlobals(uint32_t maxBvhLevels) {
|
|
if (rtDispatchGlobalsInfos.size() == 0) {
|
|
return nullptr;
|
|
}
|
|
|
|
size_t last = rtDispatchGlobalsInfos.size() - 1;
|
|
if (maxBvhLevels > last) {
|
|
return nullptr;
|
|
}
|
|
|
|
for (size_t i = last; i >= maxBvhLevels; i--) {
|
|
if (rtDispatchGlobalsInfos[i] != nullptr) {
|
|
return rtDispatchGlobalsInfos[i];
|
|
}
|
|
|
|
if (i == 0) {
|
|
break;
|
|
}
|
|
}
|
|
|
|
allocateRTDispatchGlobals(maxBvhLevels);
|
|
return rtDispatchGlobalsInfos[maxBvhLevels];
|
|
}
|
|
|
|
void Device::initializeRayTracing(uint32_t maxBvhLevels) {
|
|
if (rtMemoryBackedBuffer == nullptr) {
|
|
auto size = RayTracingHelper::getTotalMemoryBackedFifoSize(*this);
|
|
|
|
AllocationProperties allocProps(getRootDeviceIndex(), true, size, AllocationType::BUFFER, true, getDeviceBitfield());
|
|
auto &productHelper = getProductHelper();
|
|
allocProps.flags.resource48Bit = productHelper.is48bResourceNeededForRayTracing();
|
|
allocProps.flags.isUSMDeviceAllocation = true;
|
|
|
|
rtMemoryBackedBuffer = getMemoryManager()->allocateGraphicsMemoryWithProperties(allocProps);
|
|
}
|
|
|
|
while (rtDispatchGlobalsInfos.size() <= maxBvhLevels) {
|
|
rtDispatchGlobalsInfos.push_back(nullptr);
|
|
}
|
|
}
|
|
|
|
void Device::finalizeRayTracing() {
|
|
getMemoryManager()->freeGraphicsMemory(rtMemoryBackedBuffer);
|
|
rtMemoryBackedBuffer = nullptr;
|
|
|
|
for (size_t i = 0; i < rtDispatchGlobalsInfos.size(); i++) {
|
|
auto rtDispatchGlobalsInfo = rtDispatchGlobalsInfos[i];
|
|
if (rtDispatchGlobalsInfo == nullptr) {
|
|
continue;
|
|
}
|
|
for (size_t j = 0; j < rtDispatchGlobalsInfo->rtStacks.size(); j++) {
|
|
getMemoryManager()->freeGraphicsMemory(rtDispatchGlobalsInfo->rtStacks[j]);
|
|
rtDispatchGlobalsInfo->rtStacks[j] = nullptr;
|
|
}
|
|
|
|
getMemoryManager()->freeGraphicsMemory(rtDispatchGlobalsInfo->rtDispatchGlobalsArray);
|
|
rtDispatchGlobalsInfo->rtDispatchGlobalsArray = nullptr;
|
|
|
|
delete rtDispatchGlobalsInfos[i];
|
|
rtDispatchGlobalsInfos[i] = nullptr;
|
|
}
|
|
}
|
|
|
|
void Device::initializeEngineRoundRobinControls() {
|
|
if (this->availableEnginesForCommandQueueusRoundRobin.any()) {
|
|
return;
|
|
}
|
|
|
|
uint32_t queuesPerEngine = 1u;
|
|
|
|
if (DebugManager.flags.CmdQRoundRobindEngineAssignNTo1.get() != -1) {
|
|
queuesPerEngine = DebugManager.flags.CmdQRoundRobindEngineAssignNTo1.get();
|
|
}
|
|
|
|
this->queuesPerEngineCount = queuesPerEngine;
|
|
|
|
std::bitset<8> availableEngines = std::numeric_limits<uint8_t>::max();
|
|
|
|
if (DebugManager.flags.CmdQRoundRobindEngineAssignBitfield.get() != -1) {
|
|
availableEngines = DebugManager.flags.CmdQRoundRobindEngineAssignBitfield.get();
|
|
}
|
|
|
|
this->availableEnginesForCommandQueueusRoundRobin = availableEngines;
|
|
}
|
|
|
|
OSTime *Device::getOSTime() const { return getRootDeviceEnvironment().osTime.get(); };
|
|
|
|
bool Device::getUuid(std::array<uint8_t, ProductHelper::uuidSize> &uuid) {
|
|
if (this->uuid.isValid) {
|
|
uuid = this->uuid.id;
|
|
|
|
auto hwInfo = getHardwareInfo();
|
|
auto subDevicesCount = GfxCoreHelper::getSubDevicesCount(&hwInfo);
|
|
|
|
if (subDevicesCount > 1 && deviceBitfield.count() == 1) {
|
|
// In case of no sub devices created (bits set in affinity mask == 1), return the UUID of enabled sub-device.
|
|
uint32_t subDeviceIndex = Math::log2(static_cast<uint32_t>(deviceBitfield.to_ulong()));
|
|
uuid[ProductHelper::uuidSize - 1] = subDeviceIndex + 1;
|
|
}
|
|
}
|
|
return this->uuid.isValid;
|
|
}
|
|
|
|
bool Device::generateUuidFromPciBusInfo(const PhysicalDevicePciBusInfo &pciBusInfo, std::array<uint8_t, ProductHelper::uuidSize> &uuid) {
|
|
if (pciBusInfo.pciDomain != PhysicalDevicePciBusInfo::invalidValue) {
|
|
uuid.fill(0);
|
|
|
|
/* Device UUID uniquely identifies a device within a system.
|
|
* We generate it based on device information along with PCI information
|
|
* This guarantees uniqueness of UUIDs on a system even when multiple
|
|
* identical Intel GPUs are present.
|
|
*/
|
|
|
|
/* We want to have UUID matching between different GPU APIs (including outside
|
|
* of compute_runtime project - i.e. other than L0 or OCL). This structure definition
|
|
* has been agreed upon by various Intel driver teams.
|
|
*
|
|
* Consult other driver teams before changing this.
|
|
*/
|
|
|
|
struct device_uuid {
|
|
uint16_t vendor_id;
|
|
uint16_t device_id;
|
|
uint16_t revision_id;
|
|
uint16_t pci_domain;
|
|
uint8_t pci_bus;
|
|
uint8_t pci_dev;
|
|
uint8_t pci_func;
|
|
uint8_t reserved[4];
|
|
uint8_t sub_device_id;
|
|
};
|
|
|
|
device_uuid deviceUUID = {};
|
|
deviceUUID.vendor_id = 0x8086; // Intel
|
|
deviceUUID.device_id = getHardwareInfo().platform.usDeviceID;
|
|
deviceUUID.revision_id = getHardwareInfo().platform.usRevId;
|
|
deviceUUID.pci_domain = static_cast<uint16_t>(pciBusInfo.pciDomain);
|
|
deviceUUID.pci_bus = static_cast<uint8_t>(pciBusInfo.pciBus);
|
|
deviceUUID.pci_dev = static_cast<uint8_t>(pciBusInfo.pciDevice);
|
|
deviceUUID.pci_func = static_cast<uint8_t>(pciBusInfo.pciFunction);
|
|
deviceUUID.sub_device_id = isSubDevice() ? static_cast<SubDevice *>(this)->getSubDeviceIndex() + 1 : 0;
|
|
|
|
static_assert(sizeof(device_uuid) == ProductHelper::uuidSize);
|
|
|
|
memcpy_s(uuid.data(), ProductHelper::uuidSize, &deviceUUID, sizeof(device_uuid));
|
|
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
void Device::generateUuid(std::array<uint8_t, ProductHelper::uuidSize> &uuid) {
|
|
const auto &deviceInfo = getDeviceInfo();
|
|
const auto &hardwareInfo = getHardwareInfo();
|
|
uint32_t rootDeviceIndex = getRootDeviceIndex();
|
|
uuid.fill(0);
|
|
memcpy_s(&uuid[0], sizeof(uint32_t), &deviceInfo.vendorId, sizeof(deviceInfo.vendorId));
|
|
memcpy_s(&uuid[4], sizeof(uint32_t), &hardwareInfo.platform.usDeviceID, sizeof(hardwareInfo.platform.usDeviceID));
|
|
memcpy_s(&uuid[8], sizeof(uint32_t), &rootDeviceIndex, sizeof(rootDeviceIndex));
|
|
}
|
|
|
|
void Device::getAdapterMask(uint32_t &nodeMask) {
|
|
if (verifyAdapterLuid()) {
|
|
nodeMask = 1;
|
|
}
|
|
}
|
|
|
|
const GfxCoreHelper &Device::getGfxCoreHelper() const {
|
|
return getRootDeviceEnvironment().getHelper<GfxCoreHelper>();
|
|
}
|
|
|
|
const ProductHelper &Device::getProductHelper() const {
|
|
return getRootDeviceEnvironment().getHelper<ProductHelper>();
|
|
}
|
|
|
|
const CompilerProductHelper &Device::getCompilerProductHelper() const {
|
|
return getRootDeviceEnvironment().getHelper<CompilerProductHelper>();
|
|
}
|
|
|
|
void Device::allocateRTDispatchGlobals(uint32_t maxBvhLevels) {
|
|
UNRECOVERABLE_IF(rtDispatchGlobalsInfos.size() < maxBvhLevels + 1);
|
|
UNRECOVERABLE_IF(rtDispatchGlobalsInfos[maxBvhLevels] != nullptr);
|
|
|
|
uint32_t extraBytesLocal = 0;
|
|
uint32_t extraBytesGlobal = 0;
|
|
uint32_t dispatchGlobalsStride = MemoryConstants::pageSize64k;
|
|
UNRECOVERABLE_IF(RayTracingHelper::getDispatchGlobalSize() > dispatchGlobalsStride);
|
|
|
|
bool allocFailed = false;
|
|
|
|
const auto deviceCount = GfxCoreHelper::getSubDevicesCount(executionEnvironment->rootDeviceEnvironments[getRootDeviceIndex()]->getHardwareInfo());
|
|
auto dispatchGlobalsSize = deviceCount * dispatchGlobalsStride;
|
|
auto rtStackSize = RayTracingHelper::getRTStackSizePerTile(*this, deviceCount, maxBvhLevels, extraBytesLocal, extraBytesGlobal);
|
|
|
|
std::unique_ptr<RTDispatchGlobalsInfo> dispatchGlobalsInfo = std::make_unique<RTDispatchGlobalsInfo>();
|
|
if (dispatchGlobalsInfo == nullptr) {
|
|
return;
|
|
}
|
|
|
|
auto &productHelper = getProductHelper();
|
|
|
|
GraphicsAllocation *dispatchGlobalsArrayAllocation = nullptr;
|
|
|
|
AllocationProperties arrayAllocProps(getRootDeviceIndex(), true, dispatchGlobalsSize,
|
|
AllocationType::BUFFER, true, getDeviceBitfield());
|
|
arrayAllocProps.flags.resource48Bit = productHelper.is48bResourceNeededForRayTracing();
|
|
arrayAllocProps.flags.isUSMDeviceAllocation = true;
|
|
dispatchGlobalsArrayAllocation = getMemoryManager()->allocateGraphicsMemoryWithProperties(arrayAllocProps);
|
|
|
|
if (dispatchGlobalsArrayAllocation == nullptr) {
|
|
return;
|
|
}
|
|
|
|
for (unsigned int tile = 0; tile < deviceCount; tile++) {
|
|
DeviceBitfield deviceBitfield =
|
|
(deviceCount == 1)
|
|
? this->getDeviceBitfield()
|
|
: subdevices[tile]->getDeviceBitfield();
|
|
|
|
AllocationProperties allocProps(getRootDeviceIndex(), true, rtStackSize, AllocationType::BUFFER, true, deviceBitfield);
|
|
allocProps.flags.resource48Bit = productHelper.is48bResourceNeededForRayTracing();
|
|
allocProps.flags.isUSMDeviceAllocation = true;
|
|
|
|
auto rtStackAllocation = getMemoryManager()->allocateGraphicsMemoryWithProperties(allocProps);
|
|
|
|
if (rtStackAllocation == nullptr) {
|
|
allocFailed = true;
|
|
break;
|
|
}
|
|
|
|
struct RTDispatchGlobals dispatchGlobals = {0};
|
|
|
|
dispatchGlobals.rtMemBasePtr = rtStackAllocation->getGpuAddress() + rtStackSize;
|
|
dispatchGlobals.callStackHandlerKSP = reinterpret_cast<uint64_t>(nullptr);
|
|
dispatchGlobals.stackSizePerRay = 0;
|
|
dispatchGlobals.numDSSRTStacks = RayTracingHelper::stackDssMultiplier;
|
|
dispatchGlobals.maxBVHLevels = maxBvhLevels;
|
|
|
|
uint32_t *dispatchGlobalsAsArray = reinterpret_cast<uint32_t *>(&dispatchGlobals);
|
|
dispatchGlobalsAsArray[7] = 1;
|
|
|
|
MemoryTransferHelper::transferMemoryToAllocation(productHelper.isBlitCopyRequiredForLocalMemory(this->getRootDeviceEnvironment(), *dispatchGlobalsArrayAllocation),
|
|
*this,
|
|
dispatchGlobalsArrayAllocation,
|
|
tile * dispatchGlobalsStride,
|
|
&dispatchGlobals,
|
|
sizeof(RTDispatchGlobals));
|
|
|
|
dispatchGlobalsInfo->rtStacks.push_back(rtStackAllocation);
|
|
}
|
|
|
|
if (allocFailed) {
|
|
for (auto allocation : dispatchGlobalsInfo->rtStacks) {
|
|
getMemoryManager()->freeGraphicsMemory(allocation);
|
|
}
|
|
|
|
getMemoryManager()->freeGraphicsMemory(dispatchGlobalsArrayAllocation);
|
|
return;
|
|
}
|
|
|
|
dispatchGlobalsInfo->rtDispatchGlobalsArray = dispatchGlobalsArrayAllocation;
|
|
rtDispatchGlobalsInfos[maxBvhLevels] = dispatchGlobalsInfo.release();
|
|
}
|
|
|
|
MemoryManager *Device::getMemoryManager() const {
|
|
return executionEnvironment->memoryManager.get();
|
|
}
|
|
|
|
GmmHelper *Device::getGmmHelper() const {
|
|
return getRootDeviceEnvironment().getGmmHelper();
|
|
}
|
|
|
|
CompilerInterface *Device::getCompilerInterface() const {
|
|
return executionEnvironment->rootDeviceEnvironments[getRootDeviceIndex()]->getCompilerInterface();
|
|
}
|
|
|
|
BuiltIns *Device::getBuiltIns() const {
|
|
return executionEnvironment->rootDeviceEnvironments[getRootDeviceIndex()]->getBuiltIns();
|
|
}
|
|
|
|
EngineControl &Device::getNextEngineForMultiRegularContextMode(aub_stream::EngineType engineType) {
|
|
UNRECOVERABLE_IF(defaultEngineIndex != 0);
|
|
UNRECOVERABLE_IF((engineType != aub_stream::EngineType::ENGINE_BCS) && (engineType != aub_stream::EngineType::ENGINE_CCS));
|
|
|
|
const auto maxIndex = numberOfRegularContextsPerEngine - 1; // 1 for internal engine
|
|
uint32_t atomicOutValue = 0;
|
|
uint32_t indexOffset = 0;
|
|
|
|
if (engineType == aub_stream::EngineType::ENGINE_CCS) {
|
|
atomicOutValue = regularContextPerCcsEngineAssignmentHelper.fetch_add(1);
|
|
indexOffset = defaultEngineIndex;
|
|
} else {
|
|
atomicOutValue = regularContextPerBcsEngineAssignmentHelper.fetch_add(1);
|
|
indexOffset = defaultBcsEngineIndex;
|
|
}
|
|
|
|
auto indexToAssign = (atomicOutValue % maxIndex) + indexOffset;
|
|
|
|
return allEngines[indexToAssign];
|
|
}
|
|
|
|
bool Device::isMultiRegularContextSelectionAllowed(aub_stream::EngineType engineType, EngineUsage engineUsage) const {
|
|
if (this->numberOfRegularContextsPerEngine <= 1 || getNumGenericSubDevices() > 1 || engineUsage != EngineUsage::Regular) {
|
|
return false;
|
|
}
|
|
|
|
if (engineType == aub_stream::EngineType::ENGINE_BCS && DebugManager.flags.EnableMultipleRegularContextForBcs.get() == 1) {
|
|
return true;
|
|
}
|
|
|
|
return EngineHelpers::isCcs(engineType);
|
|
}
|
|
} // namespace NEO
|