brw: move fsign lower OOTL

Signed-off-by: Alyssa Rosenzweig <alyssa.rosenzweig@intel.com>
Reviewed-by: Caio Oliveira <caio.oliveira@intel.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/39539>
This commit is contained in:
Alyssa Rosenzweig 2025-11-17 15:00:22 -05:00 committed by Marge Bot
parent f36392c64c
commit f16ec90caa

View file

@ -2655,12 +2655,13 @@ brw_postprocess_nir_opts(nir_shader *nir, const struct brw_compiler *compiler,
OPT(nir_opt_peephole_select, &peephole_select_options);
}
OPT(brw_nir_lower_fsign);
do {
progress = false;
OPT(brw_nir_opt_fsat);
OPT(nir_opt_algebraic_late);
OPT(brw_nir_lower_fsign);
if (progress) {
OPT(nir_opt_constant_folding);