Skip to content

Commit eb8e69d

Browse files
feature: Enable kmd migration by default on PVC platform
Related-To: NEO-6465 Signed-off-by: Milczarek, Slawomir <[email protected]>
1 parent 22e6e32 commit eb8e69d

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 false;
85+
return true;
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_FALSE(productHelper->isKmdMigrationSupported());
82+
EXPECT_TRUE(productHelper->isKmdMigrationSupported());
8383
}
8484

8585
PVCTEST_F(PvcProductHelperLinux, givenAotConfigWhenSetHwInfoRevisionIdForPvcThenCorrectValueIsSet) {

0 commit comments

Comments
 (0)