Skip to content

Commit 11980db

Browse files
Jaime ArteagaCompute-Runtime-Automation
Jaime Arteaga
authored andcommitted
Create L0 list and module with correct NEO device on explicit mode
When implicit scaling is not used, a root device in L0 defaults to sub-device 0. In that case, all allocations need to be made against that sub-device. For list and module creation, we were passing the root NEO device instead, and we were allocating their internal allocations using the least-occupied bank, which meant we were allocating alternately between the two sub-devices. This patch makes sure the NEO device used on explicit mode for the root device is sub-device 0. Signed-off-by: Jaime Arteaga <[email protected]>
1 parent eb1802c commit 11980db

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

level_zero/core/source/cmdlist/cmdlist_hw.inl

+2-1
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,8 @@ ze_result_t CommandListCoreFamily<gfxCoreFamily>::initialize(Device *device, NEO
132132
}
133133

134134
commandContainer.setReservedSshSize(getReserveSshSize());
135-
auto returnValue = commandContainer.initialize(static_cast<DeviceImp *>(device)->neoDevice);
135+
DeviceImp *deviceImp = static_cast<DeviceImp *>(device);
136+
auto returnValue = commandContainer.initialize(deviceImp->getActiveDevice());
136137
ze_result_t returnType = parseErrorCode(returnValue);
137138
if (returnType == ZE_RESULT_SUCCESS) {
138139
if (!isCopyOnly()) {

level_zero/core/source/kernel/kernel_imp.cpp

+3-2
Original file line numberDiff line numberDiff line change
@@ -106,8 +106,9 @@ void KernelImmutableData::initialize(NEO::KernelInfo *kernelInfo, Device *device
106106
this->kernelInfo = kernelInfo;
107107
this->kernelDescriptor = &kernelInfo->kernelDescriptor;
108108

109-
auto neoDevice = device->getNEODevice();
110-
auto memoryManager = device->getNEODevice()->getMemoryManager();
109+
DeviceImp *deviceImp = static_cast<DeviceImp *>(device);
110+
auto neoDevice = deviceImp->getActiveDevice();
111+
auto memoryManager = neoDevice->getMemoryManager();
111112

112113
auto kernelIsaSize = kernelInfo->heapInfo.KernelHeapSize;
113114
const auto allocType = internalKernel ? NEO::GraphicsAllocation::AllocationType::KERNEL_ISA_INTERNAL : NEO::GraphicsAllocation::AllocationType::KERNEL_ISA;

0 commit comments

Comments
 (0)