From 6208a590cbc7cb444f3c6e83e7210ac0ab46dcbd Mon Sep 17 00:00:00 2001 From: Karol Herbst Date: Thu, 23 Apr 2026 16:42:51 +0200 Subject: [PATCH] intel/jay: support nir_op_ffma Reviewed-by: Alyssa Rosenzweig Reviewed-by: Georg Lehmann Part-of: --- src/intel/compiler/jay/jay_from_nir.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/intel/compiler/jay/jay_from_nir.c b/src/intel/compiler/jay/jay_from_nir.c index 3e1b345f1ee..ce07f1a9543 100644 --- a/src/intel/compiler/jay/jay_from_nir.c +++ b/src/intel/compiler/jay/jay_from_nir.c @@ -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;