performance: disable tlb invalidation on PTL/Xe

Related-To: NEO-15939

Signed-off-by: Szymon Morek <szymon.morek@intel.com>
This commit is contained in:
Szymon Morek
2025-09-02 12:17:30 +00:00
committed by Compute-Runtime-Automation
parent 0557b82586
commit 030a489b5b
2 changed files with 11 additions and 0 deletions

View File

@@ -41,3 +41,9 @@ 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());
}