From 4af079960d80ee7e633ea0acadd9cead4f23bb30 Mon Sep 17 00:00:00 2001 From: Caio Oliveira Date: Wed, 16 Nov 2022 23:59:03 -0800 Subject: [PATCH] intel/compiler: Enable lower_rotate_to_shuffle in subgroup lowering Reviewed-by: Lionel Landwerlin Part-of: --- src/intel/compiler/brw_nir.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/intel/compiler/brw_nir.c b/src/intel/compiler/brw_nir.c index ceb599d20e5..a3bb7d666e2 100644 --- a/src/intel/compiler/brw_nir.c +++ b/src/intel/compiler/brw_nir.c @@ -1001,6 +1001,7 @@ brw_preprocess_nir(const struct brw_compiler *compiler, nir_shader *nir, .lower_quad_broadcast_dynamic = true, .lower_elect = true, .lower_inverse_ballot = true, + .lower_rotate_to_shuffle = true, }; OPT(nir_lower_subgroups, &subgroups_options);