We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 95c834d commit fb1b7d6Copy full SHA for fb1b7d6
IGC/AdaptorOCL/UnifyIROCL.cpp
@@ -598,11 +598,8 @@ static void CommonOCLBasedPasses(OpenCLProgramContext* pContext)
598
// Break down the intrinsics into smaller operations (eg. fmuladd to fmul add)
599
mpm.add(new BreakdownIntrinsicPass());
600
601
- // Break down 2D block intrinsics. Should be before a call to LICM. Mostly
602
- // useful when LICM is enabled, so we will consider only that case
603
- if (IGC_IS_FLAG_ENABLED(allowLICM)) {
604
- mpm.add(createDecompose2DBlockFuncsPass());
605
- }
+ // Break down 2D block intrinsics. Should be before a call to LICM
+ mpm.add(createDecompose2DBlockFuncsPass());
606
607
{
608
if(IGC_IS_FLAG_ENABLED(EnableConstantPromotion))
0 commit comments