From 2044b1fba5d19d475d73f39ddb17ff86213941a1 Mon Sep 17 00:00:00 2001 From: Alyssa Rosenzweig Date: Wed, 16 Sep 2020 13:12:20 -0400 Subject: [PATCH] pan/bi: Lower flrp16 Signed-off-by: Alyssa Rosenzweig Reviewed-by: Daniel Stone Fixes: 3c8934a644b ("nir/algebraic: add flrp patterns for 16 and 64 bits") Part-of: --- src/panfrost/bifrost/bifrost_compile.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/panfrost/bifrost/bifrost_compile.h b/src/panfrost/bifrost/bifrost_compile.h index 734406d..cc28b42 100644 --- a/src/panfrost/bifrost/bifrost_compile.h +++ b/src/panfrost/bifrost/bifrost_compile.h @@ -32,6 +32,7 @@ void bifrost_compile_shader_nir(nir_shader *nir, panfrost_program *program, unsi static const nir_shader_compiler_options bifrost_nir_options = { .lower_scmp = true, + .lower_flrp16 = true, .lower_flrp32 = true, .lower_flrp64 = true, .lower_ffract = true, -- 2.7.4