mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-08 22:12:59 +08:00
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:
committed by
Compute-Runtime-Automation
parent
36049caf00
commit
71c6731287
@@ -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());
|
||||
}
|
||||
|
||||
@@ -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));
|
||||
}
|
||||
@@ -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());
|
||||
}
|
||||
@@ -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) {
|
||||
|
||||
@@ -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));
|
||||
}
|
||||
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user