diff --git a/.pick_status.json b/.pick_status.json index 054d0e12485..9320191886e 100644 --- a/.pick_status.json +++ b/.pick_status.json @@ -574,7 +574,7 @@ "description": "intel/common: Consider 0 threads while setting TG", "nominated": true, "nomination_type": 2, - "resolution": 0, + "resolution": 1, "main_sha": null, "because_sha": "0c4e1c9efcf4c1730e73d6aade2232d596ad8dcf", "notes": null diff --git a/src/intel/common/intel_common.c b/src/intel/common/intel_common.c index d9ebaa36784..5d3a9c68489 100644 --- a/src/intel/common/intel_common.c +++ b/src/intel/common/intel_common.c @@ -227,7 +227,7 @@ intel_compute_threads_group_dispatch_size(uint32_t hw_threads_in_wg) * compute overdispatch disabled set to 1, then we need to use TG Size 1. */ switch (hw_threads_in_wg) { - case 1 ... 16: + case 0 ... 16: return 0; case 17 ... 32: return 1;