From: Alyssa Rosenzweig Date: Mon, 17 Jun 2019 18:12:51 +0000 (-0700) Subject: panfrost/midgard: Enable autovectorization X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9402970751ca04c4d6edb3a0441a4063a975295c;p=mesa.git panfrost/midgard: Enable autovectorization Enable nir_opt_vectorize. Signed-off-by: Alyssa Rosenzweig --- diff --git a/src/gallium/drivers/panfrost/midgard/midgard_compile.c b/src/gallium/drivers/panfrost/midgard/midgard_compile.c index 602530fad89..304bcf8ddfa 100644 --- a/src/gallium/drivers/panfrost/midgard/midgard_compile.c +++ b/src/gallium/drivers/panfrost/midgard/midgard_compile.c @@ -476,8 +476,7 @@ optimise_nir(nir_shader *nir) nir_var_shader_out | nir_var_function_temp); - /* TODO: Enable vectorize when merged upstream */ - // NIR_PASS(progress, nir, nir_opt_vectorize); + NIR_PASS(progress, nir, nir_opt_vectorize); } while (progress); /* Must be run at the end to prevent creation of fsin/fcos ops */