Revert "feature: Enable shared system USM by default for BMG"

This reverts commit d4d9d550b2.

Signed-off-by: Compute-Runtime-Validation <compute-runtime-validation@intel.com>
This commit is contained in:
Compute-Runtime-Validation
2025-11-19 03:46:42 +01:00
committed by Compute-Runtime-Automation
parent dbf9e7ff63
commit fe99084f99
2 changed files with 2 additions and 2 deletions

View File

@@ -46,7 +46,7 @@ uint64_t ProductHelperHw<gfxProduct>::getSharedSystemPatIndex() const {
template <>
bool ProductHelperHw<gfxProduct>::useSharedSystemUsm() const {
return true;
return false;
}
template class ProductHelperHw<gfxProduct>;

View File

@@ -70,7 +70,7 @@ BMGTEST_F(BmgProductHelperLinux, givenProductHelperWhenAskedGetSharedSystemPatIn
}
BMGTEST_F(BmgProductHelperLinux, givenProductHelperWhenAskedUseSharedSystemUsmThenReturnCorrectValue) {
EXPECT_TRUE(productHelper->useSharedSystemUsm());
EXPECT_FALSE(productHelper->useSharedSystemUsm());
}
BMGTEST_F(BmgProductHelperLinux, WhenGtIsSetupThenGtSystemInfoIsCorrect) {