feature: Enable shared system USM by default for BMG

Resolves: NEO-16531

Signed-off-by: John Falkowski <john.falkowski@intel.com>
This commit is contained in:
John Falkowski
2025-12-26 00:24:22 +00:00
committed by Compute-Runtime-Automation
parent 0704eb8bf2
commit 39bda51ab3
2 changed files with 2 additions and 2 deletions

View File

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

View File

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