brw: normalize formatting

Signed-off-by: Alyssa Rosenzweig <alyssa.rosenzweig@intel.com>
Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
This commit is contained in:
Alyssa Rosenzweig 2025-11-17 15:28:12 -05:00 committed by Caio Oliveira
parent 74ecbb6fcc
commit b1762023f7

View file

@ -2639,21 +2639,13 @@ brw_postprocess_nir_opts(nir_shader *nir, const struct brw_compiler *compiler,
OPT(brw_nir_lower_fsign);
OPT(brw_nir_opt_fsat);
do {
progress = false;
OPT(nir_opt_algebraic_late);
if (progress) {
OPT(nir_opt_copy_prop);
OPT(nir_opt_dce);
OPT(nir_opt_cse);
}
} while (progress);
while (OPT(nir_opt_algebraic_late)) {
OPT(nir_opt_copy_prop);
OPT(nir_opt_dce);
OPT(nir_opt_cse);
}
OPT(nir_lower_fp16_casts, nir_lower_fp16_split_fp64);
OPT(nir_lower_alu_to_scalar, NULL, NULL);
while (OPT(nir_opt_algebraic_distribute_src_mods)) {