diff --git a/.pick_status.json b/.pick_status.json index 58e3837b89d..0f006b096c8 100644 --- a/.pick_status.json +++ b/.pick_status.json @@ -44,7 +44,7 @@ "description": "rusticl: Fix work group size validation", "nominated": true, "nomination_type": 2, - "resolution": 0, + "resolution": 1, "main_sha": null, "because_sha": "eca4f0f632b1e3e6e24bd12ee5f00522eb7d0fdb", "notes": null diff --git a/src/gallium/frontends/rusticl/api/kernel.rs b/src/gallium/frontends/rusticl/api/kernel.rs index 94baa88099a..4749946b1fb 100644 --- a/src/gallium/frontends/rusticl/api/kernel.rs +++ b/src/gallium/frontends/rusticl/api/kernel.rs @@ -595,7 +595,7 @@ fn enqueue_ndrange_kernel( let device_bits = q.device.address_bits(); let device_max = u64::MAX >> (u64::BITS - device_bits); - let mut threads = 0; + let mut threads = 1; for i in 0..work_dim as usize { let lws = local_work_size[i]; let gws = global_work_size[i];