mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-01 03:48:06 +02:00
r600/sfn: scheduler allow more lookahead on ALU instr
Signed-off-by: Gert Wollny <gert.wollny@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/20205>
This commit is contained in:
parent
fcafe1ffc8
commit
38da65c445
1 changed files with 2 additions and 2 deletions
|
|
@ -806,8 +806,8 @@ BlockSheduler::collect_ready_alu_vec(std::list<AluInstr *>& ready,
|
|||
}
|
||||
|
||||
int max_check = 0;
|
||||
while (i != e && max_check++ < 32) {
|
||||
if (ready.size() < 32 && (*i)->ready()) {
|
||||
while (i != e && max_check++ < 64) {
|
||||
if (ready.size() < 64 && (*i)->ready()) {
|
||||
|
||||
int priority = 0;
|
||||
/* LDS fetches that use static offsets are usually ready ery fast,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue