performance: Enable ULLS light for ARLH

Related-To: NEO-13922

Signed-off-by: Lukasz Jobczyk <lukasz.jobczyk@intel.com>
This commit is contained in:
Lukasz Jobczyk 2025-02-19 13:45:56 +00:00 committed by Compute-Runtime-Automation
parent 66c4288494
commit 1f7c67ea8d
2 changed files with 6 additions and 0 deletions

View File

@ -29,6 +29,11 @@ bool ReleaseHelperHw<release>::isPipeControlPriorToPipelineSelectWaRequired() co
return true;
}
template <>
bool ReleaseHelperHw<release>::isDirectSubmissionLightSupported() const {
return true;
}
template <>
bool ReleaseHelperHw<release>::isDirectSubmissionSupported() const {
return true;

View File

@ -41,6 +41,7 @@ TEST_F(ReleaseHelper1274Tests, whenGettingCapabilitiesThenCorrectPropertiesAreRe
EXPECT_TRUE(releaseHelper->isRayTracingSupported());
EXPECT_TRUE(releaseHelper->isNumRtStacksPerDssFixedValue());
EXPECT_FALSE(releaseHelper->getFtrXe2Compression());
EXPECT_TRUE(releaseHelper->isDirectSubmissionLightSupported());
}
}