Module: Mesa Branch: master Commit: 95d611e036a2d79d33c833d30ce38e842443d904 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=95d611e036a2d79d33c833d30ce38e842443d904
Author: Dave Airlie <[email protected]> Date: Wed Aug 19 05:14:16 2020 +1000 llvmpipe: lower mul 2x32_64 Fixes: dEQP-VK.glsl.builtin.function.integer.umulextended* dEQP-VK.glsl.builtin.function.integer.imulextended* Reviewed-by: Roland Scheidegger <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/6339> --- src/gallium/drivers/llvmpipe/lp_screen.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/gallium/drivers/llvmpipe/lp_screen.c b/src/gallium/drivers/llvmpipe/lp_screen.c index 4fa3436d0ab..644738392c4 100644 --- a/src/gallium/drivers/llvmpipe/lp_screen.c +++ b/src/gallium/drivers/llvmpipe/lp_screen.c @@ -566,6 +566,7 @@ static const struct nir_shader_compiler_options gallivm_nir_options = { .lower_rotate = true, .lower_uadd_carry = true, .lower_usub_borrow = true, + .lower_mul_2x32_64 = true, .lower_ifind_msb = true, .max_unroll_iterations = 32, .use_interpolated_input_intrinsics = true, _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
