mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-01 07:30:09 +01:00
ir3: don't vectorize nir_op_sdot_4x8_iadd[_sat]
They don't support being repeated.
Fixes a compiler crash in Hogwarts Legacy.
Signed-off-by: Job Noorman <jnoorman@igalia.com>
Fixes: 58d18bc7a8 ("ir3: lower vectorized NIR instructions")
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/36886>
This commit is contained in:
parent
ecbe35d878
commit
b53682f41b
1 changed files with 2 additions and 0 deletions
|
|
@ -19,6 +19,8 @@ ir3_supports_vectorized_nir_op(nir_op op)
|
|||
case nir_op_udot_4x8_uadd_sat:
|
||||
case nir_op_sudot_4x8_iadd:
|
||||
case nir_op_sudot_4x8_iadd_sat:
|
||||
case nir_op_sdot_4x8_iadd:
|
||||
case nir_op_sdot_4x8_iadd_sat:
|
||||
|
||||
/* Among SFU instructions, only rcp doesn't seem to support repeat. */
|
||||
case nir_op_frcp:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue