Disable recoverable page faults on PVC platform

Related-To: NEO-6355

Signed-off-by: Milczarek, Slawomir <slawomir.milczarek@intel.com>
This commit is contained in:
Milczarek, Slawomir 2023-02-27 14:45:26 +00:00 committed by Compute-Runtime-Automation
parent 8d2028a986
commit 57614f9cd4
2 changed files with 2 additions and 2 deletions

View File

@ -77,7 +77,7 @@ uint64_t ProductHelperHw<gfxProduct>::getDeviceMemoryMaxBandWidthInBytesPerSecon
template <>
bool ProductHelperHw<gfxProduct>::isPageFaultSupported() const {
return true;
return false;
}
} // namespace NEO

View File

@ -77,7 +77,7 @@ PVCTEST_F(PvcProductHelperLinux, givenProductHelperWhenAskedIfPatIndexProgrammin
HWTEST_EXCLUDE_PRODUCT(ProductHelperTest, givenProductHelperWhenAskedIfPageFaultIsSupportedThenReturnFalse, IGFX_PVC);
PVCTEST_F(PvcProductHelperLinux, givenProductHelperWhenAskedIsPageFaultSupportedThenReturnTrue) {
EXPECT_TRUE(productHelper->isPageFaultSupported());
EXPECT_FALSE(productHelper->isPageFaultSupported());
}
PVCTEST_F(PvcProductHelperLinux, givenAotConfigWhenSetHwInfoRevisionIdForPvcThenCorrectValueIsSet) {