From adaae3baf17a299c4ed3a657ca12530cce84b35b Mon Sep 17 00:00:00 2001 From: Alyssa Rosenzweig Date: Thu, 7 May 2026 11:30:44 -0400 Subject: [PATCH] jay/lower_scoreboard: control flow is int pipe according to IGC output. Signed-off-by: Alyssa Rosenzweig Reviewed-by: Kenneth Graunke Part-of: --- src/intel/compiler/jay/jay_lower_scoreboard.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/intel/compiler/jay/jay_lower_scoreboard.c b/src/intel/compiler/jay/jay_lower_scoreboard.c index 3dfd0531e48..e05a44cbc79 100644 --- a/src/intel/compiler/jay/jay_lower_scoreboard.c +++ b/src/intel/compiler/jay/jay_lower_scoreboard.c @@ -166,7 +166,7 @@ struct swsb_state { static enum tgl_pipe inst_exec_pipe(const struct intel_device_info *devinfo, jay_inst *I) { - if (I->op == JAY_OPCODE_SEND || jay_op_is_control_flow(I->op)) { + if (I->op == JAY_OPCODE_SEND) { return TGL_PIPE_NONE; } else if (I->op == JAY_OPCODE_MATH) { return TGL_PIPE_MATH;