Mesa (master): radv: enable lower_fmod for the LLVM path

GitLab Mirror gitlab-mirror at kemper.freedesktop.org
Thu Oct 3 16:12:08 UTC 2019


Module: Mesa
Branch: master
Commit: 5ebe1a17e98692880cff84e941d2683705c83f80
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=5ebe1a17e98692880cff84e941d2683705c83f80

Author: Samuel Pitoiset <samuel.pitoiset at gmail.com>
Date:   Thu Oct  3 16:20:40 2019 +0200

radv: enable lower_fmod for the LLVM path

This lowers fmod and frem at NIR level like RadeonSI. fmod is
already lowered directly in NIR->LLVM, and frem will be lowered by
LLVM anyways.

This fixes a LLVM crash with:
dEQP-VK.glsl.builtin.precision_fp16_storage32b.frem.compute.scalar.

Signed-off-by: Samuel Pitoiset <samuel.pitoiset at gmail.com>
Reviewed-by: Bas Nieuwenhuizen <bas at basnieuwenhuizen.nl>

---

 src/amd/vulkan/radv_shader.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/amd/vulkan/radv_shader.c b/src/amd/vulkan/radv_shader.c
index 18608d8a9be..09c5ce639c8 100644
--- a/src/amd/vulkan/radv_shader.c
+++ b/src/amd/vulkan/radv_shader.c
@@ -61,6 +61,7 @@ static const struct nir_shader_compiler_options nir_options_llvm = {
 	.lower_device_index_to_zero = true,
 	.lower_fsat = true,
 	.lower_fdiv = true,
+	.lower_fmod = true,
 	.lower_bitfield_insert_to_bitfield_select = true,
 	.lower_bitfield_extract = true,
 	.lower_sub = true,




More information about the mesa-commit mailing list