performance: disable blit enqueue on LNL

Resolves: NEO-11471

Signed-off-by: Lukasz Jobczyk <lukasz.jobczyk@intel.com>
This commit is contained in:
Lukasz Jobczyk
2024-07-03 13:28:55 +00:00
committed by Compute-Runtime-Automation
parent b40ec06256
commit a96f2ea13a
11 changed files with 35 additions and 13 deletions

View File

@@ -480,7 +480,7 @@ HWTEST2_F(ProductHelperTest, givenProductHelperWhenAskedIfDisableScratchPagesIsS
}
HWTEST_F(ProductHelperTest, givenProductHelperWhenCheckBlitEnqueueAllowedThenReturnTrue) {
EXPECT_TRUE(productHelper->blitEnqueueAllowed());
EXPECT_TRUE(productHelper->blitEnqueueAllowed(false));
}
HWTEST_F(ProductHelperTest, givenProductHelperWhenAskedIfTile64With3DSurfaceOnBCSIsSupportedThenTrueIsReturned) {

View File

@@ -193,7 +193,7 @@ HWTEST2_F(XeLpgProductHelperTests, givenProductHelperWhenGettingEvictIfNecessary
}
HWTEST2_F(XeLpgProductHelperTests, givenProductHelperWhenCheckBlitEnqueueAllowedThenReturnFalse, IsXeLpg) {
EXPECT_FALSE(productHelper->blitEnqueueAllowed());
EXPECT_FALSE(productHelper->blitEnqueueAllowed(false));
}
HWTEST2_F(XeLpgProductHelperTests, givenProductHelperWhenCallGetInternalHeapsPreallocatedThenReturnCorrectValue, IsXeLpg) {