performance: remove TLB invalidations on PTL/Windows

Signed-off-by: Szymon Morek <szymon.morek@intel.com>
This commit is contained in:
Szymon Morek
2025-09-17 12:19:51 +00:00
committed by Compute-Runtime-Automation
parent f0f869ed42
commit 9dfa9f1cbb
4 changed files with 9 additions and 11 deletions

View File

@@ -54,9 +54,3 @@ PTLTEST_F(PtlHwInfoLinux, WhenGtIsSetupThenGtSystemInfoIsCorrect) {
EXPECT_GT(gtSystemInfo.DualSubSliceCount, 0u);
EXPECT_GT(gtSystemInfo.MaxDualSubSlicesSupported, 0u);
}
using PtlProductHelperTest = ProductHelperTest;
PTLTEST_F(PtlProductHelperTest, givenProductHelperWhenAskedIfIsTlbFlushRequiredThenFalseIsReturned) {
EXPECT_FALSE(productHelper->isTlbFlushRequired());
}

View File

@@ -139,4 +139,8 @@ PTLTEST_F(PtlProductHelper, givenProductHelperWhenCheckingIsHostDeviceUsmPoolAll
PTLTEST_F(PtlProductHelper, givenProductHelperWhenIsMisalignedUserPtr2WayCoherentThenReturnTrue) {
EXPECT_TRUE(productHelper->isMisalignedUserPtr2WayCoherent());
}
PTLTEST_F(PtlProductHelper, givenProductHelperWhenAskedIfIsTlbFlushRequiredThenFalseIsReturned) {
EXPECT_FALSE(productHelper->isTlbFlushRequired());
}