From 57a00707a19bbf43b60b4521575ed8565f6ce153 Mon Sep 17 00:00:00 2001 From: Alyssa Rosenzweig Date: Mon, 13 Apr 2026 14:20:17 -0400 Subject: [PATCH] jay: drop GRF reg stats doesn't match what brw does, will revisit for Xe3. Signed-off-by: Alyssa Rosenzweig Part-of: --- src/intel/compiler/jay/jay_from_nir.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/intel/compiler/jay/jay_from_nir.c b/src/intel/compiler/jay/jay_from_nir.c index bc9059f97e8..a4cd6a8d3de 100644 --- a/src/intel/compiler/jay/jay_from_nir.c +++ b/src/intel/compiler/jay/jay_from_nir.c @@ -3206,11 +3206,6 @@ jay_gather_stats(const jay_shader *s, struct genisa_stats *stats) /* XXX: Write a real cycle model */ stats->cycles++; - - /* Calculate register usage */ - if (I->dst.file == GPR) - stats->grf_registers = - MAX2(stats->grf_registers, I->dst.reg + jay_num_values(I->dst)); } stats->spills = s->spills;