Revert "feature: extend TBX page fault manager from CPU implementation"

This reverts commit 51c0e80299.

Signed-off-by: Compute-Runtime-Validation <compute-runtime-validation@intel.com>
This commit is contained in:
Compute-Runtime-Validation
2024-12-12 11:11:42 +01:00
committed by Compute-Runtime-Automation
parent 5f6b2de3dc
commit 6c5d9a6ed7
36 changed files with 129 additions and 584 deletions

View File

@@ -83,11 +83,9 @@ MemoryManager::MemoryManager(ExecutionEnvironment &executionEnvironment) : execu
localMemAllocsSize[rootDeviceIndex].store(0u);
}
if (anyLocalMemorySupported || debugManager.isTbxMode()) {
pageFaultManager = CpuPageFaultManager::create();
if (anyLocalMemorySupported) {
prefetchManager = PrefetchManager::create();
}
if (anyLocalMemorySupported) {
pageFaultManager = PageFaultManager::create();
prefetchManager = PrefetchManager::create();
}
if (debugManager.flags.EnableMultiStorageResources.get() != -1) {