File tree Expand file tree Collapse file tree 2 files changed +4
-5
lines changed
Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -2860,10 +2860,9 @@ namespace IGC
28602860 uint32_t requiredSimdSize = getReqdSubGroupSize (F, pMdUtils);
28612861
28622862 // there is a requirement for specific compilation size, we can't abort on simd32
2863- if (requiredSimdSize != 0 &&
2864- !(requiredSimdSize < 32 && SIMDMode::SIMD32 == simdMode)) {
2865- EP.m_canAbortOnSpill = false ;
2866- }
2863+ if (requiredSimdSize != 0 )
2864+ EP.m_canAbortOnSpill = false ;
2865+
28672866 bool hasSubGroupForce = hasSubGroupIntrinsicPVC (F);
28682867 uint32_t maxPressure = getMaxPressure (F, pMdUtils);
28692868
Original file line number Diff line number Diff line change @@ -218,7 +218,7 @@ bool isCoreXE2() const {
218218}
219219
220220bool isCoreXE3 () const {
221- return (m_platformInfo.eRenderCoreFamily == IGFX_XE3_CORE);
221+ return ( m_platformInfo.eRenderCoreFamily == IGFX_XE3_CORE );
222222}
223223
224224// This function checks if core is child of another core
You can’t perform that action at this time.
0 commit comments