diff options
author | Ben Widawsky <benjamin.widawsky@intel.com> | 2014-11-02 11:43:24 -0800 |
---|---|---|
committer | Ben Widawsky <benjamin.widawsky@intel.com> | 2014-11-02 21:18:08 -0800 |
commit | 5695303563b76f625439b495fe41428256aba39e (patch) | |
tree | 0371eea057b6da7c41930e6069add7546c63a3e6 /src | |
parent | 52576dcb882202ea1e2c239c5865b1ce74ff9847 (diff) | |
download | external_mesa3d-5695303563b76f625439b495fe41428256aba39e.zip external_mesa3d-5695303563b76f625439b495fe41428256aba39e.tar.gz external_mesa3d-5695303563b76f625439b495fe41428256aba39e.tar.bz2 |
i965/chv: Increase VS and GS thread counts
AFAICT the number of threads is 80, not 70. I am not sure if Ken knows
something I do not.
Signed-off-by: Ben Widawsky <ben@bwidawsk.net>
Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_device_info.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_device_info.c b/src/mesa/drivers/dri/i965/brw_device_info.c index 18e4c80..35ca125 100644 --- a/src/mesa/drivers/dri/i965/brw_device_info.c +++ b/src/mesa/drivers/dri/i965/brw_device_info.c @@ -240,8 +240,8 @@ static const struct brw_device_info brw_device_info_bdw_gt3 = { static const struct brw_device_info brw_device_info_chv = { GEN8_FEATURES, .is_cherryview = 1, .gt = 1, .has_llc = false, - .max_vs_threads = 70, - .max_gs_threads = 70, + .max_vs_threads = 80, + .max_gs_threads = 80, .max_wm_threads = 102, .urb = { .size = 128, |