Revert "performance: remove TLB invalidations on BMG/Windows"

This reverts commit 1239858eda.

Signed-off-by: Compute-Runtime-Validation <compute-runtime-validation@intel.com>
This commit is contained in:
Compute-Runtime-Validation
2025-09-20 09:04:47 +02:00
committed by Compute-Runtime-Automation
parent c7bd6b7b13
commit c08aa1d400
4 changed files with 9 additions and 9 deletions

View File

@@ -53,6 +53,10 @@ BMGTEST_F(BmgProductHelperLinux, givenProductHelperWhenAskedIfPatIndexProgrammin
EXPECT_TRUE(productHelper->isVmBindPatIndexProgrammingSupported());
}
BMGTEST_F(BmgProductHelperLinux, givenProductHelperWhenAskedIfIsTlbFlushRequiredThenFalseIsReturned) {
EXPECT_FALSE(productHelper->isTlbFlushRequired());
}
BMGTEST_F(BmgProductHelperLinux, givenProductHelperWhenAskedIsPageFaultSupportedThenReturnFalse) {
EXPECT_FALSE(productHelper->isPageFaultSupported());
}

View File

@@ -147,8 +147,4 @@ BMGTEST_F(BmgProductHelper, givenProductHelperWhenCheckingIsHostDeviceUsmPoolAll
EXPECT_TRUE(productHelper->isHostUsmPoolAllocatorSupported());
EXPECT_TRUE(productHelper->isDeviceUsmPoolAllocatorSupported());
}
}
BMGTEST_F(BmgProductHelper, givenProductHelperWhenAskedIfIsTlbFlushRequiredThenFalseIsReturned) {
EXPECT_FALSE(productHelper->isTlbFlushRequired());
}