mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2024-12-04 15:44:06 +08:00
r600/sfn: Increase LDS fetch schedule priority
Otherwise we may end up scheduling the value read before the value fetch. Signed-off-by: Gert Wollny <gert.wollny@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/24212>
This commit is contained in:
parent
ddb167e81a
commit
197bc1ee07
@ -1001,6 +1001,8 @@ BlockScheduler::collect_ready_alu_vec(std::list<AluInstr *>& ready,
|
||||
|
||||
if ((*i)->has_lds_access()) {
|
||||
priority = 100000;
|
||||
if ((*i)->has_alu_flag(alu_is_lds))
|
||||
priority += 100000;
|
||||
} else if (addr) {
|
||||
priority = 10000;
|
||||
} else if (AluGroup::has_t()) {
|
||||
|
Loading…
Reference in New Issue
Block a user