Skip to content

Commit b4d8d6b

Browse files
Revert "feature: Enable kmd migration by default on PVC platform"
This reverts commit eb8e69d. Signed-off-by: Compute-Runtime-Validation <[email protected]>
1 parent e03160a commit b4d8d6b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

shared/source/xe_hpc_core/linux/product_helper_pvc.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ bool ProductHelperHw<gfxProduct>::isPageFaultSupported() const {
8282

8383
template <>
8484
bool ProductHelperHw<gfxProduct>::isKmdMigrationSupported() const {
85-
return true;
85+
return false;
8686
}
8787

8888
} // namespace NEO

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ PVCTEST_F(PvcProductHelperLinux, givenProductHelperWhenAskedIsPageFaultSupported
7979
HWTEST_EXCLUDE_PRODUCT(ProductHelperTest, givenProductHelperWhenAskedIfKmdMigrationIsSupportedThenReturnFalse, IGFX_PVC);
8080

8181
PVCTEST_F(PvcProductHelperLinux, givenProductHelperWhenAskedIsKmdMigrationSupportedThenReturnTrue) {
82-
EXPECT_TRUE(productHelper->isKmdMigrationSupported());
82+
EXPECT_FALSE(productHelper->isKmdMigrationSupported());
8383
}
8484

8585
PVCTEST_F(PvcProductHelperLinux, givenAotConfigWhenSetHwInfoRevisionIdForPvcThenCorrectValueIsSet) {

0 commit comments

Comments
 (0)