diff options
author | Ben Widawsky <[email protected]> | 2016-02-08 18:11:42 -0800 |
---|---|---|
committer | Ben Widawsky <[email protected]> | 2016-03-11 11:17:28 -0800 |
commit | 5e6a43a001db0bb333deb3d003df11ab8ef96a21 (patch) | |
tree | bfb2d7abdfb8bdef1f1692ee96756d0507788a4b /src/mesa | |
parent | 3dc3dbc8d826255d60e2aca8822b77619ace206a (diff) |
i965/chv: Update lower min for CS threads
We have better information now, and 28 was not a valid thing to support. 6 EUs
per sublice with 7 threads per EU is the minimum supported config.
Signed-off-by: Ben Widawsky <[email protected]>
Reviewed-by: Jordan Justen <[email protected]
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_device_info.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_device_info.c b/src/mesa/drivers/dri/i965/brw_device_info.c index 55c4d3613d0..c703fb5d4cf 100644 --- a/src/mesa/drivers/dri/i965/brw_device_info.c +++ b/src/mesa/drivers/dri/i965/brw_device_info.c @@ -312,7 +312,7 @@ static const struct brw_device_info brw_device_info_chv = { .max_ds_threads = 80, .max_gs_threads = 80, .max_wm_threads = 128, - .max_cs_threads = 28, + .max_cs_threads = 6 * 7, .urb = { .size = 192, .min_vs_entries = 34, |