From 7e8ed66bbd94d78e8e07fe42806feb52a8dddfd5 Mon Sep 17 00:00:00 2001 From: Job Noorman Date: Tue, 1 Apr 2025 12:00:15 +0200 Subject: [PATCH] ir3/lower_io_offsets: set progress when scalarizing UAV loads Signed-off-by: Job Noorman Fixes: 91f19bcbe07 ("ir3: Plumb through two-dimensional UAV loads") Part-of: (cherry picked from commit fca143946e641f4d223febe74177c5414bf6e230) --- .pick_status.json | 2 +- src/freedreno/ir3/ir3_nir_lower_io_offsets.c | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.pick_status.json b/.pick_status.json index 4775c580efc..d9c9ea47314 100644 --- a/.pick_status.json +++ b/.pick_status.json @@ -1984,7 +1984,7 @@ "description": "ir3/lower_io_offsets: set progress when scalarizing UAV loads", "nominated": true, "nomination_type": 2, - "resolution": 0, + "resolution": 1, "main_sha": null, "because_sha": "91f19bcbe072e663c1c4e9cd81f12ed0824a30e9", "notes": null diff --git a/src/freedreno/ir3/ir3_nir_lower_io_offsets.c b/src/freedreno/ir3/ir3_nir_lower_io_offsets.c index 29b2ecd21d5..6e4eb92ea7f 100644 --- a/src/freedreno/ir3/ir3_nir_lower_io_offsets.c +++ b/src/freedreno/ir3/ir3_nir_lower_io_offsets.c @@ -281,6 +281,7 @@ lower_io_offsets_block(nir_block *block, nir_builder *b, void *mem_ctx) intr->num_components > 1) { b->cursor = nir_before_instr(instr); scalarize_load(intr, b); + progress = true; } }