Skip to content

Commit

Permalink
Revert "feature: Enable kmd migration by default on PVC platform"
Browse files Browse the repository at this point in the history
This reverts commit eb8e69d.

Signed-off-by: Compute-Runtime-Validation <compute-runtime-validation@intel.com>

Source: b4d8d6b
  • Loading branch information
Compute-Runtime-Validation authored and Compute-Runtime-Automation committed Feb 9, 2024
1 parent 5651424 commit 23a9725
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions shared/source/xe_hpc_core/linux/product_helper_pvc.cpp
@@ -1,5 +1,5 @@
/*
* Copyright (C) 2021-2023 Intel Corporation
* Copyright (C) 2021-2024 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
Expand Down Expand Up @@ -80,7 +80,7 @@ bool ProductHelperHw<gfxProduct>::isPageFaultSupported() const {

template <>
bool ProductHelperHw<gfxProduct>::isKmdMigrationSupported() const {
return true;
return false;
}

} // namespace NEO
Expand Down
@@ -1,5 +1,5 @@
/*
* Copyright (C) 2021-2023 Intel Corporation
* Copyright (C) 2021-2024 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
Expand Down Expand Up @@ -79,7 +79,7 @@ PVCTEST_F(PvcProductHelperLinux, givenProductHelperWhenAskedIsPageFaultSupported
HWTEST_EXCLUDE_PRODUCT(ProductHelperTest, givenProductHelperWhenAskedIfKmdMigrationIsSupportedThenReturnFalse, IGFX_PVC);

PVCTEST_F(PvcProductHelperLinux, givenProductHelperWhenAskedIsKmdMigrationSupportedThenReturnTrue) {
EXPECT_TRUE(productHelper->isKmdMigrationSupported());
EXPECT_FALSE(productHelper->isKmdMigrationSupported());
}

PVCTEST_F(PvcProductHelperLinux, givenAotConfigWhenSetHwInfoRevisionIdForPvcThenCorrectValueIsSet) {
Expand Down

0 comments on commit 23a9725

Please sign in to comment.