mirror of
https://github.com/intel/compute-runtime.git
synced 2025-09-15 13:01:45 +08:00
Revert "Add debug flag for EOT WA"
This reverts commit cf3817e058
.
Signed-off-by: Compute-Runtime-Validation <compute-runtime-validation@intel.com>
This commit is contained in:

committed by
Compute-Runtime-Automation

parent
6292a3304a
commit
f53ae0a50e
@ -403,12 +403,7 @@ GraphicsAllocation *WddmMemoryManager::allocate32BitGraphicsMemoryImpl(const All
|
||||
CacheSettingsHelper::getGmmUsageType(wddmAllocation->getAllocationType(), !!allocationData.flags.uncacheable, *hwInfo), false, {}, true);
|
||||
wddmAllocation->setDefaultGmm(gmm);
|
||||
|
||||
void *requiredGpuAddress = nullptr;
|
||||
if (GraphicsAllocation::isIsaAllocationType(allocationData.type) && allocationData.gpuAddress != 0) {
|
||||
requiredGpuAddress = reinterpret_cast<void *>(allocationData.gpuAddress);
|
||||
}
|
||||
|
||||
if (!createWddmAllocation(wddmAllocation.get(), requiredGpuAddress)) {
|
||||
if (!createWddmAllocation(wddmAllocation.get(), nullptr)) {
|
||||
delete gmm;
|
||||
freeSystemMemory(pSysMem);
|
||||
return nullptr;
|
||||
@ -1100,10 +1095,6 @@ GraphicsAllocation *WddmMemoryManager::allocateGraphicsMemoryInDevicePool(const
|
||||
}
|
||||
}
|
||||
|
||||
if (GraphicsAllocation::isIsaAllocationType(allocationData.type) && allocationData.gpuAddress != 0) {
|
||||
requiredGpuVa = reinterpret_cast<void *>(allocationData.gpuAddress);
|
||||
}
|
||||
|
||||
if (!createWddmAllocation(wddmAllocation.get(), requiredGpuVa)) {
|
||||
for (auto handleId = 0u; handleId < allocationData.storageInfo.getNumBanks(); handleId++) {
|
||||
delete wddmAllocation->getGmm(handleId);
|
||||
|
Reference in New Issue
Block a user