intel/jay: support nir_op_ffma

Reviewed-by: Alyssa Rosenzweig <alyssa.rosenzweig@intel.com>
Reviewed-by: Georg Lehmann <dadschoorse@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/41165>
This commit is contained in:
Karol Herbst 2026-04-23 16:42:51 +02:00 committed by Marge Bot
parent df69364e69
commit 6208a590cb

View file

@ -512,6 +512,7 @@ jay_emit_alu(struct nir_to_jay_state *nj, nir_alu_instr *alu)
jay_BFI2(b, dst, src[0], src[1], src[2]);
break;
case nir_op_ffma:
case nir_op_ffma_old:
jay_MAD(b, type, dst, src[0], src[1], src[2]);
break;