From 080e03d021795eb888538f0a04f90a515b98d070 Mon Sep 17 00:00:00 2001 From: Georg Lehmann Date: Wed, 29 May 2024 15:13:43 +0200 Subject: [PATCH] ac/nir: enable ford, funord, fneo, fequ, fltu, fgeu MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Reviewed-by: Timur Kristóf Part-of: --- src/amd/common/ac_shader_util.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/amd/common/ac_shader_util.c b/src/amd/common/ac_shader_util.c index 7adf3b0b0bb..9deac4f66c6 100644 --- a/src/amd/common/ac_shader_util.c +++ b/src/amd/common/ac_shader_util.c @@ -69,6 +69,8 @@ void ac_set_nir_options(struct radeon_info *info, bool use_llvm, options->has_bfe = true; options->has_bfm = true; options->has_bitfield_select = true; + options->has_fneo_fcmpu = true; + options->has_ford_funord = true; options->has_fsub = true; options->has_isub = true; options->has_sdot_4x8 = info->has_accelerated_dot_product;