jay: drop GRF reg stats

doesn't match what brw does, will revisit for Xe3.

Signed-off-by: Alyssa Rosenzweig <alyssa.rosenzweig@intel.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/40960>
This commit is contained in:
Alyssa Rosenzweig 2026-04-13 14:20:17 -04:00 committed by Marge Bot
parent 4ab67f80e9
commit 57a00707a1

View file

@ -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;