performance: enable ULLS for xe2 platforms on linux

Related-To: NEO-9004

Signed-off-by: Szymon Morek <szymon.morek@intel.com>
This commit is contained in:
Szymon Morek
2024-08-23 13:55:17 +00:00
committed by Compute-Runtime-Automation
parent 36049caf00
commit 71c6731287
9 changed files with 14 additions and 26 deletions

View File

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

View File

@@ -103,3 +103,7 @@ BMGTEST_F(BmgProductHelper, givenProductHelperWhenGettingThreadEuRatioForScratch
auto hwInfo = *defaultHwInfo;
EXPECT_EQ(16u, productHelper->getThreadEuRatioForScratch(hwInfo));
}
BMGTEST_F(BmgProductHelper, givenProductHelperWhenCheckDirectSubmissionSupportedThenTrueIsReturned) {
EXPECT_TRUE(productHelper->isDirectSubmissionSupported(releaseHelper));
}

View File

@@ -18,10 +18,6 @@ using namespace NEO;
using BmgProductHelperWindows = ProductHelperTest;
BMGTEST_F(BmgProductHelperWindows, givenProductHelperWhenCheckDirectSubmissionSupportedThenTrueIsReturned) {
EXPECT_TRUE(productHelper->isDirectSubmissionSupported(releaseHelper));
}
BMGTEST_F(BmgProductHelperWindows, givenProductHelperWhenIsStagingBuffersEnabledThenTrueIsReturned) {
EXPECT_TRUE(productHelper->isStagingBuffersEnabled());
}

View File

@@ -64,10 +64,6 @@ LNLTEST_F(LnlProductHelperLinux, givenProductHelperWhenAskedIsDisableScratchPage
EXPECT_FALSE(productHelper->isDisableScratchPagesSupported());
}
LNLTEST_F(LnlProductHelperLinux, givenProductHelperWhenCheckDirectSubmissionSupportedThenFalseIsReturned) {
EXPECT_FALSE(productHelper->isDirectSubmissionSupported(releaseHelper));
}
using LnlHwInfoLinux = ::testing::Test;
LNLTEST_F(LnlHwInfoLinux, WhenGtIsSetupThenGtSystemInfoIsCorrect) {

View File

@@ -170,3 +170,7 @@ LNLTEST_F(LnlProductHelper, givenProductHelperWhenGettingThreadEuRatioForScratch
auto hwInfo = *defaultHwInfo;
EXPECT_EQ(16u, productHelper->getThreadEuRatioForScratch(hwInfo));
}
LNLTEST_F(LnlProductHelper, givenProductHelperWhenCheckDirectSubmissionSupportedThenTrueIsReturned) {
EXPECT_TRUE(productHelper->isDirectSubmissionSupported(releaseHelper));
}

View File

@@ -19,10 +19,6 @@ using namespace NEO;
using LnlProductHelperWindows = ProductHelperTest;
LNLTEST_F(LnlProductHelperWindows, givenProductHelperWhenCheckDirectSubmissionSupportedThenTrueIsReturned) {
EXPECT_TRUE(productHelper->isDirectSubmissionSupported(releaseHelper));
}
LNLTEST_F(LnlProductHelperWindows, givenProductHelperWhenOverridePatIndexCalledThenCorrectValueIsReturned) {
DebugManagerStateRestore restorer;