aboutsummaryrefslogtreecommitdiffstats
path: root/src/mesa
diff options
context:
space:
mode:
authorBen Widawsky <[email protected]>2016-02-12 21:53:34 -0800
committerBen Widawsky <[email protected]>2016-02-15 07:48:09 -0800
commit66c790720bc8720402e9739a132b8fb7d65d210f (patch)
treeb235d952d8119001cda5ceca47c590bcfa565d11 /src/mesa
parent5d87a7c894d8327491be804fee8005fadfaeb3f1 (diff)
i965/bxt: Production thread counts
v2: Forgot to squash in the comment removal Signed-off-by: Ben Widawsky <[email protected]> Reviewed-by: Mark Janes <[email protected]> Reviewed-by: Jason Ekstrand <[email protected]>
Diffstat (limited to 'src/mesa')
-rw-r--r--src/mesa/drivers/dri/i965/brw_device_info.c19
1 files changed, 9 insertions, 10 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_device_info.c b/src/mesa/drivers/dri/i965/brw_device_info.c
index 7ab70fef1e6..55c4d3613d0 100644
--- a/src/mesa/drivers/dri/i965/brw_device_info.c
+++ b/src/mesa/drivers/dri/i965/brw_device_info.c
@@ -384,20 +384,19 @@ static const struct brw_device_info brw_device_info_bxt = {
.gt = 1,
.has_llc = false,
- /* XXX: These are preliminary thread counts and URB sizes. */
.num_slices = 1,
- .max_vs_threads = 56,
- .max_hs_threads = 56,
- .max_ds_threads = 56,
- .max_gs_threads = 56,
+ .max_vs_threads = 112,
+ .max_hs_threads = 112,
+ .max_ds_threads = 112,
+ .max_gs_threads = 112,
.max_wm_threads = 64 * 3,
- .max_cs_threads = 28,
+ .max_cs_threads = 6 * 6,
.urb = {
- .size = 64,
+ .size = 192,
.min_vs_entries = 34,
- .max_vs_entries = 640,
- .max_hs_entries = 80,
- .max_ds_entries = 80,
+ .max_vs_entries = 704,
+ .max_hs_entries = 256,
+ .max_ds_entries = 416,
.max_gs_entries = 256,
}
};