Skip to content

Commit f9e44ba

Browse files
dlei6gsys_zuul
authored andcommitted
Lower stackcall spill scratch space max to 8KB from 32KB per thread
Change-Id: I11e4e41cd01c1cb3491b45274eba10f4421b7d86
1 parent 47ee27a commit f9e44ba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

IGC/Compiler/CISACodeGen/EmitVISAPass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -789,7 +789,7 @@ bool EmitPass::runOnFunction(llvm::Function& F)
789789
m_pCtx->m_retryManager.Disable();
790790
}
791791
m_currShader->ProgramOutput()->m_scratchSpaceUsedBySpills =
792-
MAX(m_currShader->ProgramOutput()->m_scratchSpaceUsedBySpills, 32 * 1024);
792+
MAX(m_currShader->ProgramOutput()->m_scratchSpaceUsedBySpills, 8 * 1024);
793793
}
794794
}
795795

0 commit comments

Comments
 (0)