Set page table cloning on for event device allocs

Related-To: NEO-5968

Signed-off-by: Aravind Gopalakrishnan <aravind.gopalakrishnan@intel.com>
This commit is contained in:
Aravind Gopalakrishnan
2022-02-23 21:42:23 +00:00
committed by Compute-Runtime-Automation
parent f5bb961e7c
commit e4a93f9870
2 changed files with 3 additions and 5 deletions

View File

@@ -102,11 +102,9 @@ StorageInfo MemoryManager::createStorageInfoFromProperties(const AllocationPrope
}
break;
case AllocationType::GPU_TIMESTAMP_DEVICE_BUFFER:
if (properties.flags.multiOsContextCapable) {
storageInfo.cloningOfPageTables = true;
} else {
storageInfo.cloningOfPageTables = true;
if (!properties.flags.multiOsContextCapable) {
storageInfo.pageTablesVisibility = preferredTile;
storageInfo.cloningOfPageTables = false;
}
break;
case AllocationType::BUFFER: