Skip to content

Commit 23a9725

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

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

shared/source/xe_hpc_core/linux/product_helper_pvc.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2021-2023 Intel Corporation
2+
* Copyright (C) 2021-2024 Intel Corporation
33
*
44
* SPDX-License-Identifier: MIT
55
*
@@ -80,7 +80,7 @@ bool ProductHelperHw<gfxProduct>::isPageFaultSupported() const {
8080

8181
template <>
8282
bool ProductHelperHw<gfxProduct>::isKmdMigrationSupported() const {
83-
return true;
83+
return false;
8484
}
8585

8686
} // namespace NEO

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2021-2023 Intel Corporation
2+
* Copyright (C) 2021-2024 Intel Corporation
33
*
44
* SPDX-License-Identifier: MIT
55
*
@@ -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)