mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-24 13:10:10 +01:00
pan/mdg: Defer nir_fuse_io_16 until after opts
Sometimes DCE/etc can opt out things that would force 32-bit, so this is worthwhile. Signed-off-by: Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5513>
This commit is contained in:
parent
78df3b0375
commit
d838cb96a5
1 changed files with 4 additions and 3 deletions
|
|
@ -473,9 +473,6 @@ optimise_nir(nir_shader *nir, unsigned quirks, bool is_blend)
|
|||
|
||||
NIR_PASS(progress, nir, midgard_nir_lower_algebraic_early);
|
||||
|
||||
if (!is_blend)
|
||||
NIR_PASS(progress, nir, nir_fuse_io_16);
|
||||
|
||||
do {
|
||||
progress = false;
|
||||
|
||||
|
|
@ -522,6 +519,10 @@ optimise_nir(nir_shader *nir, unsigned quirks, bool is_blend)
|
|||
NIR_PASS(progress, nir, nir_opt_vectorize);
|
||||
} while (progress);
|
||||
|
||||
/* Run after opts so it can hit more */
|
||||
if (!is_blend)
|
||||
NIR_PASS(progress, nir, nir_fuse_io_16);
|
||||
|
||||
/* Must be run at the end to prevent creation of fsin/fcos ops */
|
||||
NIR_PASS(progress, nir, midgard_nir_scale_trig);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue