Skip to content

Commit b27d879

Browse files
krystian-andrzejewskiigcbot
authored andcommitted
Disallow to produce simd32 LSC messages for XeLp
This change is to disable simd32 lsc messages for XeLp.
1 parent 3c03e79 commit b27d879

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

IGC/Compiler/CISACodeGen/Platform.hpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -891,6 +891,9 @@ bool LSCEnabled(SIMDMode m = SIMDMode::UNKNOWN) const
891891
GFX_IS_DG2_G12_CONFIG(m_platformInfo.usDeviceID)
892892
) && m == SIMDMode::SIMD8) ||
893893
m == SIMDMode::SIMD16;
894+
case IGFX_METEORLAKE:
895+
case IGFX_ARROWLAKE:
896+
return m == SIMDMode::UNKNOWN || m == SIMDMode::SIMD8 || m == SIMDMode::SIMD16;
894897
default:
895898
return true;
896899
}

0 commit comments

Comments
 (0)