1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352
|
/*
* Copyright (C) 2022-2025 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#include "level_zero/core/source/device/bcs_split.h"
#include "shared/source/command_stream/command_stream_receiver.h"
#include "shared/source/debug_settings/debug_settings_manager.h"
#include "shared/source/helpers/hw_info.h"
#include "shared/source/os_interface/os_context.h"
#include "level_zero/core/source/device/device_imp.h"
#include "level_zero/core/source/driver/driver_handle.h"
#include "level_zero/core/source/gfx_core_helpers/l0_gfx_core_helper.h"
#include "level_zero/driver_experimental/zex_api.h"
namespace L0 {
bool BcsSplit::setupDevice(NEO::CommandStreamReceiver *csr, bool copyOffloadEnabled) {
auto &productHelper = this->device.getProductHelper();
this->splitSettings = productHelper.getBcsSplitSettings(this->device.getHwInfo());
NEO::debugManager.flags.SplitBcsRequiredTileCount.assignIfNotDefault(splitSettings.requiredTileCount);
// If expectedTileCount==1, route root device to Tile0, otherwise use all Tiles
bool tileCountMatch = (splitSettings.requiredTileCount == 1) || (this->device.getNEODevice()->getNumSubDevices() == splitSettings.requiredTileCount);
bool engineMatch = (csr->getOsContext().getEngineType() == productHelper.getDefaultCopyEngine());
if (copyOffloadEnabled && NEO::debugManager.flags.SplitBcsForCopyOffload.get() != 0) {
engineMatch = NEO::EngineHelpers::isComputeEngine(csr->getOsContext().getEngineType());
}
if (!(engineMatch && tileCountMatch)) {
return false;
}
std::lock_guard<std::mutex> lock(this->mtx);
NEO::debugManager.flags.SplitBcsPerEngineMaxSize.assignIfNotDefault(splitSettings.perEngineMaxSize);
UNRECOVERABLE_IF(splitSettings.perEngineMaxSize == 0);
this->clientCount++;
if (!this->cmdLists.empty()) {
return true;
}
events.aggregatedEventsMode = NEO::debugManager.flags.SplitBcsAggregatedEventsMode.getIfNotDefault(device.getL0GfxCoreHelper().bcsSplitAggregatedModeEnabled());
setupEnginesMask();
return setupQueues();
}
bool BcsSplit::setupQueues() {
CsrContainer csrs;
for (uint32_t tileId = 0; tileId < splitSettings.requiredTileCount; tileId++) {
auto subDevice = this->device.getNEODevice()->getNearestGenericSubDevice(tileId);
UNRECOVERABLE_IF(!subDevice);
for (uint32_t engineId = 0; engineId < NEO::bcsInfoMaskSize; engineId++) {
if (splitSettings.allEngines.test(engineId)) {
if (auto engine = subDevice->tryGetEngine(NEO::EngineHelpers::getBcsEngineAtIdx(engineId), NEO::EngineUsage::regular)) {
csrs.push_back(engine->commandStreamReceiver);
}
}
if (csrs.size() >= splitSettings.minRequiredTotalCsrCount) {
break;
}
}
}
if (csrs.size() < splitSettings.minRequiredTotalCsrCount) {
return false;
}
ze_command_queue_flags_t flags = events.aggregatedEventsMode ? static_cast<ze_command_queue_flags_t>(ZE_COMMAND_QUEUE_FLAG_IN_ORDER) : 0u;
const ze_command_queue_desc_t splitDesc = {.stype = ZE_STRUCTURE_TYPE_COMMAND_QUEUE_DESC, .flags = flags, .mode = ZE_COMMAND_QUEUE_MODE_ASYNCHRONOUS};
auto productFamily = this->device.getHwInfo().platform.eProductFamily;
for (const auto &csr : csrs) {
ze_result_t result;
auto cmdList = CommandList::createImmediate(productFamily, &device, &splitDesc, true, NEO::EngineHelpers::engineTypeToEngineGroupType(csr->getOsContext().getEngineType()), csr, result);
UNRECOVERABLE_IF(result != ZE_RESULT_SUCCESS);
cmdList->forceDisableInOrderWaits();
this->cmdLists.push_back(cmdList);
auto engineType = csr->getOsContext().getEngineType();
auto bcsId = NEO::EngineHelpers::getBcsIndex(engineType);
if (splitSettings.h2dEngines.test(bcsId)) {
this->h2dCmdLists.push_back(cmdList);
}
if (splitSettings.d2hEngines.test(bcsId)) {
this->d2hCmdLists.push_back(cmdList);
}
}
return true;
}
void BcsSplit::setupEnginesMask() {
NEO::debugManager.flags.SplitBcsMask.assignIfNotDefault(splitSettings.allEngines);
NEO::debugManager.flags.SplitBcsMaskH2D.assignIfNotDefault(splitSettings.h2dEngines);
NEO::debugManager.flags.SplitBcsMaskD2H.assignIfNotDefault(splitSettings.d2hEngines);
NEO::debugManager.flags.SplitBcsRequiredEnginesCount.assignIfNotDefault(splitSettings.minRequiredTotalCsrCount);
}
void BcsSplit::releaseResources() {
std::lock_guard<std::mutex> lock(this->mtx);
this->clientCount--;
if (this->clientCount == 0u) {
for (auto cmdList : cmdLists) {
cmdList->destroy();
}
cmdLists.clear();
d2hCmdLists.clear();
h2dCmdLists.clear();
this->events.releaseResources();
}
}
std::vector<CommandList *> &BcsSplit::selectCmdLists(NEO::TransferDirection direction) {
if (direction == NEO::TransferDirection::hostToLocal) {
return h2dCmdLists;
} else if (direction == NEO::TransferDirection::localToHost) {
return d2hCmdLists;
}
return cmdLists;
}
BcsSplit::CmdListsForSplitContainer BcsSplit::getCmdListsForSplit(NEO::TransferDirection direction, size_t totalTransferSize) {
auto &selectedCmdListType = selectCmdLists(direction);
size_t maxEnginesToUse = std::max(totalTransferSize / splitSettings.perEngineMaxSize, size_t(1));
auto engineCount = std::min(selectedCmdListType.size(), maxEnginesToUse);
return {selectedCmdListType.begin(), selectedCmdListType.begin() + engineCount};
}
size_t BcsSplitEvents::obtainAggregatedEventsForSplit(Context *context) {
for (size_t i = 0; i < this->marker.size(); i++) {
if (this->marker[i]->queryStatus() == ZE_RESULT_SUCCESS) {
resetAggregatedEventState(i, false);
return i;
}
}
return this->createAggregatedEvent(context);
}
std::optional<size_t> BcsSplitEvents::obtainForSplit(Context *context, size_t maxEventCountInPool) {
std::lock_guard<std::mutex> lock(this->mtx);
if (this->aggregatedEventsMode) {
return obtainAggregatedEventsForSplit(context);
}
for (size_t i = 0; i < this->marker.size(); i++) {
auto ret = this->marker[i]->queryStatus();
if (ret == ZE_RESULT_SUCCESS) {
this->resetEventPackage(i);
return i;
}
}
auto newEventIndex = this->createFromPool(context, maxEventCountInPool);
if (newEventIndex.has_value() || this->marker.empty()) {
return newEventIndex;
}
this->marker[0]->hostSynchronize(std::numeric_limits<uint64_t>::max());
this->resetEventPackage(0);
return 0;
}
uint64_t *BcsSplitEvents::getNextAllocationForAggregatedEvent() {
constexpr size_t allocationSize = MemoryConstants::pageSize64k;
if (!this->allocsForAggregatedEvents.empty() && (currentAggregatedAllocOffset + MemoryConstants::cacheLineSize) < allocationSize) {
currentAggregatedAllocOffset += MemoryConstants::cacheLineSize;
} else {
ze_device_mem_alloc_desc_t desc = {ZE_STRUCTURE_TYPE_DEVICE_MEM_ALLOC_DESC};
void *ptr = nullptr;
auto context = Context::fromHandle(bcsSplit.getDevice().getDriverHandle()->getDefaultContext());
context->allocDeviceMem(bcsSplit.getDevice().toHandle(), &desc, allocationSize, MemoryConstants::pageSize64k, &ptr);
UNRECOVERABLE_IF(!ptr);
currentAggregatedAllocOffset = 0;
this->allocsForAggregatedEvents.push_back(ptr);
}
auto basePtr = reinterpret_cast<uint64_t *>(this->allocsForAggregatedEvents.back());
return ptrOffset(basePtr, currentAggregatedAllocOffset);
}
size_t BcsSplitEvents::createAggregatedEvent(Context *context) {
constexpr int preallocationCount = 8;
size_t returnIndex = this->subcopy.size();
zex_counter_based_event_external_storage_properties_t externalStorageAllocProperties = {.stype = ZEX_STRUCTURE_COUNTER_BASED_EVENT_EXTERNAL_STORAGE_ALLOC_PROPERTIES,
.incrementValue = 1,
.completionValue = static_cast<uint64_t>(bcsSplit.cmdLists.size())};
const zex_counter_based_event_desc_t counterBasedDesc = {.stype = ZEX_STRUCTURE_COUNTER_BASED_EVENT_DESC,
.pNext = &externalStorageAllocProperties,
.flags = ZEX_COUNTER_BASED_EVENT_FLAG_IMMEDIATE,
.signalScope = ZE_EVENT_SCOPE_FLAG_DEVICE};
const zex_counter_based_event_desc_t markerCounterBasedDesc = {.stype = ZEX_STRUCTURE_COUNTER_BASED_EVENT_DESC,
.flags = ZEX_COUNTER_BASED_EVENT_FLAG_IMMEDIATE | ZEX_COUNTER_BASED_EVENT_FLAG_HOST_VISIBLE,
.signalScope = ZE_EVENT_SCOPE_FLAG_HOST};
for (int i = 0; i < preallocationCount; i++) {
externalStorageAllocProperties.deviceAddress = getNextAllocationForAggregatedEvent();
ze_event_handle_t handle = nullptr;
zexCounterBasedEventCreate2(context, bcsSplit.getDevice().toHandle(), &counterBasedDesc, &handle);
UNRECOVERABLE_IF(handle == nullptr);
this->subcopy.push_back(Event::fromHandle(handle));
ze_event_handle_t markerHandle = nullptr;
zexCounterBasedEventCreate2(context, bcsSplit.getDevice().toHandle(), &markerCounterBasedDesc, &markerHandle);
UNRECOVERABLE_IF(markerHandle == nullptr);
this->marker.push_back(Event::fromHandle(markerHandle));
resetAggregatedEventState(this->subcopy.size() - 1, (i != 0));
}
return returnIndex;
}
bool BcsSplitEvents::allocatePool(Context *context, size_t maxEventCountInPool, size_t neededEvents) {
if (this->pools.empty() ||
this->createdFromLatestPool + neededEvents > maxEventCountInPool) {
ze_result_t result;
ze_event_pool_desc_t desc = {ZE_STRUCTURE_TYPE_EVENT_POOL_DESC};
desc.count = static_cast<uint32_t>(maxEventCountInPool);
auto hDevice = this->bcsSplit.getDevice().toHandle();
auto pool = EventPool::create(this->bcsSplit.getDevice().getDriverHandle(), context, 1, &hDevice, &desc, result);
if (!pool) {
return false;
}
this->pools.push_back(pool);
this->createdFromLatestPool = 0u;
}
return true;
}
std::optional<size_t> BcsSplitEvents::createFromPool(Context *context, size_t maxEventCountInPool) {
/* Internal events needed for split:
* - event per subcopy to signal completion of given subcopy (vector of subcopy events),
* - 1 event to signal completion of entire split (vector of marker events),
* - 1 event to handle barrier (vector of barrier events).
*/
const size_t neededEvents = this->bcsSplit.cmdLists.size() + 2;
if (!allocatePool(context, maxEventCountInPool, neededEvents)) {
return std::nullopt;
}
auto pool = this->pools[this->pools.size() - 1];
ze_event_desc_t desc = {ZE_STRUCTURE_TYPE_EVENT_DESC};
for (size_t i = 0; i < neededEvents; i++) {
// Marker event is the only one of internal split events that will be read from host, so create it at the end with appended scope flag.
bool markerEvent = (i == neededEvents - 1);
bool barrierEvent = (i == neededEvents - 2);
desc.signal = markerEvent ? ZE_EVENT_SCOPE_FLAG_HOST : ZE_EVENT_SCOPE_FLAG_DEVICE;
desc.index = static_cast<uint32_t>(this->createdFromLatestPool++);
ze_event_handle_t hEvent = {};
pool->createEvent(&desc, &hEvent);
auto event = Event::fromHandle(hEvent);
event->disableImplicitCounterBasedMode();
// Last event, created with host scope flag, is marker event.
if (markerEvent) {
this->marker.push_back(event);
// One event to handle barrier and others to handle subcopy completion.
} else if (barrierEvent) {
this->barrier.push_back(event);
} else {
this->subcopy.push_back(event);
}
}
return this->marker.size() - 1;
}
void BcsSplitEvents::resetEventPackage(size_t index) {
this->marker[index]->reset();
this->barrier[index]->reset();
for (size_t j = 0; j < this->bcsSplit.cmdLists.size(); j++) {
this->subcopy[index * this->bcsSplit.cmdLists.size() + j]->reset();
}
}
void BcsSplitEvents::resetAggregatedEventState(size_t index, bool markerCompleted) {
*this->subcopy[index]->getInOrderExecInfo()->getBaseHostAddress() = 0;
auto markerEvent = this->marker[index];
markerEvent->resetCompletionStatus();
markerEvent->unsetInOrderExecInfo();
markerEvent->setReportEmptyCbEventAsReady(markerCompleted);
}
void BcsSplitEvents::releaseResources() {
for (auto &markerEvent : this->marker) {
markerEvent->destroy();
}
marker.clear();
for (auto &subcopyEvent : this->subcopy) {
subcopyEvent->destroy();
}
subcopy.clear();
for (auto &barrierEvent : this->barrier) {
barrierEvent->destroy();
}
barrier.clear();
for (auto &pool : this->pools) {
pool->destroy();
}
pools.clear();
auto context = Context::fromHandle(bcsSplit.getDevice().getDriverHandle()->getDefaultContext());
for (auto &ptr : this->allocsForAggregatedEvents) {
context->freeMem(ptr);
}
allocsForAggregatedEvents.clear();
}
} // namespace L0
|