Skip to content

Commit 4adb15f

Browse files
Disable recoverable page faults on PVC platform
Related-To: NEO-6355 Signed-off-by: Milczarek, Slawomir <[email protected]> Source: 57614f9
1 parent cf53cc5 commit 4adb15f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

shared/source/xe_hpc_core/linux/hw_info_config_pvc.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ uint64_t ProductHelperHw<gfxProduct>::getDeviceMemoryMaxBandWidthInBytesPerSecon
7777

7878
template <>
7979
bool ProductHelperHw<gfxProduct>::isPageFaultSupported() const {
80-
return true;
80+
return false;
8181
}
8282

8383
} // namespace NEO

shared/test/unit_test/xe_hpc_core/pvc/linux/hw_info_config_tests_pvc.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ PVCTEST_F(PvcProductHelperLinux, givenProductHelperWhenAskedIfPatIndexProgrammin
7575
HWTEST_EXCLUDE_PRODUCT(ProductHelperTest, givenProductHelperWhenAskedIfPageFaultIsSupportedThenReturnFalse, IGFX_PVC);
7676

7777
PVCTEST_F(PvcProductHelperLinux, givenProductHelperWhenAskedIsPageFaultSupportedThenReturnTrue) {
78-
EXPECT_TRUE(productHelper->isPageFaultSupported());
78+
EXPECT_FALSE(productHelper->isPageFaultSupported());
7979
}
8080

8181
PVCTEST_F(PvcProductHelperLinux, givenAotConfigWhenSetHwInfoRevisionIdForPvcThenCorrectValueIsSet) {

0 commit comments

Comments
 (0)