From c78c2e03f40fbc5aa414ebe2b63c55f151c1c556 Mon Sep 17 00:00:00 2001 From: Alyssa Rosenzweig Date: Tue, 26 May 2026 08:31:52 -0400 Subject: [PATCH] jay: remove send split hack The new partitioning code behaves sensibly here now. 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 b908e41a518..0016b0950f4 100644 --- a/src/intel/compiler/jay/jay_from_nir.c +++ b/src/intel/compiler/jay/jay_from_nir.c @@ -849,11 +849,6 @@ jay_emit_fb_write(jay_builder *b, nir_intrinsic_instr *intr) srcs[i] = jay_UNDEF_u32(b); } - /* Our current send splitting heuristic is bad, override it. */ - if (split == -1) { - split = len; - } - jay_inst *send = jay_SEND(b, .sfid = BRW_SFID_RENDER_CACHE, .check_tdr = true, .msg_desc = desc | (ex_desc << 32), .srcs = srcs, .nr_srcs = len,