We can't skip redundant register updates on compute queues, at least
not all of them.
Fixes: 315231b5a519bdc14 - radeonsi: eliminate redundant compute SH register changes
Reviewed-by: Pierre-Eric Pelloux-Prayer <pierre-eric.pelloux-prayer@amd.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/25390>
if (sctx->bo_list_add_all_compute_resources)
si_compute_resources_add_all_to_bo_list(sctx);
- /* Don't optimize any registers on certain CDNA chips, otherwise it would break. */
- if (sctx->family >= CHIP_GFX940 && !sctx->screen->info.has_graphics)
+ /* Skipping setting redundant registers on compute queues breaks compute. */
+ if (!sctx->has_graphics)
sctx->tracked_regs.other_reg_saved_mask = 0;
/* First emit registers. */