From e66bfbd6916429d3029b1172715da5d3a73380f2 Mon Sep 17 00:00:00 2001 From: Alyssa Rosenzweig Date: Mon, 13 Apr 2026 15:45:25 -0400 Subject: [PATCH] jay: fix SEND scoreboarding by inspection in a glmark2 shader. Signed-off-by: Alyssa Rosenzweig 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 305dfff57ba..252fdad5500 100644 --- a/src/intel/compiler/jay/jay_lower_scoreboard.c +++ b/src/intel/compiler/jay/jay_lower_scoreboard.c @@ -239,7 +239,7 @@ lower_regdist_local(jay_function *func, jay_block *block, u32_per_pipe *access) jay_foreach_pipe(p) { if (dep[p]) { jay_foreach_pipe(q) { - if (dep[q] && state.finished_ip[p][q] >= dep[q]) { + if (p != q && dep[q] && state.finished_ip[p][q] >= dep[q]) { dep[q] = 0; } }