Enable recoverable page faults on PVC platform only

Related-To: NEO-6355

Signed-off-by: Milczarek, Slawomir <slawomir.milczarek@intel.com>
This commit is contained in:
Milczarek, Slawomir
2023-02-05 17:20:25 +00:00
committed by Compute-Runtime-Automation
parent 6d30d31381
commit 9b7b193b38
8 changed files with 39 additions and 3 deletions

View File

@@ -1,5 +1,5 @@
/*
* Copyright (C) 2021-2022 Intel Corporation
* Copyright (C) 2021-2023 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
@@ -75,6 +75,11 @@ uint64_t ProductHelperHw<gfxProduct>::getDeviceMemoryMaxBandWidthInBytesPerSecon
return memoryMaxClkRateInMhz * 1000 * 1000 * numberOfHbmStacksPerTile * memoryBusWidth / 8;
}
template <>
bool ProductHelperHw<gfxProduct>::isPageFaultSupported() const {
return true;
}
} // namespace NEO
#include "shared/source/xe_hpc_core/linux/hw_info_config_xe_hpc_core.inl"