ir3: enable lower_pack_64_4x16
Some checks are pending
macOS-CI / macOS-CI (dri) (push) Waiting to run
macOS-CI / macOS-CI (xlib) (push) Waiting to run

The compiler won't be able to emit pack_64_4x16. Fix infinite
optimization loop caused in nir_opt_algebraic caused by it.

Closes: https://gitlab.freedesktop.org/mesa/mesa/-/issues/13223
Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/35112>
This commit is contained in:
Dmitry Baryshkov 2025-05-22 19:58:44 +03:00 committed by Marge Bot
parent 86f7ce06be
commit aa2ff0261b

View file

@ -99,6 +99,7 @@ static const nir_shader_compiler_options ir3_base_options = {
.lower_unpack_unorm_4x8 = true,
.lower_unpack_unorm_2x16 = true,
.lower_pack_split = true,
.lower_pack_64_4x16 = true,
.lower_to_scalar = true,
.has_imul24 = true,
.has_icsel_eqz32 = true,