From fccd68625cd4969bbd3786529bd71eaccb448296 Mon Sep 17 00:00:00 2001 From: Alyssa Rosenzweig Date: Tue, 21 Apr 2026 13:14:04 -0400 Subject: [PATCH] jay: shrink stack allocation Signed-off-by: Alyssa Rosenzweig Part-of: --- src/intel/compiler/jay/jay_lower_scoreboard.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/intel/compiler/jay/jay_lower_scoreboard.c b/src/intel/compiler/jay/jay_lower_scoreboard.c index 18a83ae7f26..c0a5b85e1c1 100644 --- a/src/intel/compiler/jay/jay_lower_scoreboard.c +++ b/src/intel/compiler/jay/jay_lower_scoreboard.c @@ -12,8 +12,7 @@ #include "jay_opcodes.h" #include "jay_private.h" -/* TODO: Shrink */ -#define MAX_KEYS (2 * JAY_NUM_UGPR) +#define MAX_KEYS (JAY_NUM_PHYS_GRF + JAY_NUM_UGPR) #define NUM_TOKENS (16) /** SEND scoreboarding */