Skip to content

Commit cad7764

Browse files
performance: Enable ULLS light for ARLS, ARLU, MTLU
Related-To: NEO-13922 Signed-off-by: Lukasz Jobczyk <[email protected]>
1 parent 683d7c7 commit cad7764

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

shared/source/release_helper/release_helper_1270.cpp

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,11 @@ inline bool ReleaseHelperHw<release>::isAuxSurfaceModeOverrideRequired() const {
3232
return true;
3333
}
3434

35+
template <>
36+
bool ReleaseHelperHw<release>::isDirectSubmissionLightSupported() const {
37+
return true;
38+
}
39+
3540
template <>
3641
inline bool ReleaseHelperHw<release>::isDotProductAccumulateSystolicSupported() const {
3742
return false;

shared/test/unit_test/release_helper/release_helper_12_70_tests.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ TEST_F(ReleaseHelper1270Tests, whenGettingCapabilitiesThenCorrectPropertiesAreRe
4343
EXPECT_TRUE(releaseHelper->isRayTracingSupported());
4444
EXPECT_TRUE(releaseHelper->isNumRtStacksPerDssFixedValue());
4545
EXPECT_FALSE(releaseHelper->getFtrXe2Compression());
46+
EXPECT_TRUE(releaseHelper->isDirectSubmissionLightSupported());
4647
}
4748
}
4849

0 commit comments

Comments
 (0)