Allocate Sip kernel in front window

Signed-off-by: Mateusz Hoppe <mateusz.hoppe@intel.com>
This commit is contained in:
Mateusz Hoppe
2021-03-24 17:55:11 +00:00
committed by Compute-Runtime-Automation
parent 330ee3d227
commit 4924a2e741
2 changed files with 23 additions and 1 deletions

View File

@@ -49,7 +49,7 @@ const SipKernel &BuiltIns::getSipKernel(SipKernelType type, Device &device) {
const auto allocType = GraphicsAllocation::AllocationType::KERNEL_ISA_INTERNAL;
AllocationProperties properties = {device.getRootDeviceIndex(), sipBinary.size(), allocType, device.getDeviceBitfield()};
properties.flags.use32BitFrontWindow = false;
properties.flags.use32BitFrontWindow = true;
auto sipAllocation = device.getMemoryManager()->allocateGraphicsMemoryWithProperties(properties);