summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBen Widawsky <[email protected]>2016-01-25 11:49:10 -0800
committerBen Widawsky <[email protected]>2016-01-25 15:51:17 -0800
commita443b5b7320ef0d8a63faf8a7fc6136f97460cea (patch)
tree8a83dd20d41b417d611babc59c0a4a4bda472f45
parent2542871387393e855f6afe6c94d44611eefaf6eb (diff)
i965/bxt: Fix conservative wm thread counts.
When setting the conservative thread counts, I halved everything. That isn't correct for the wm, which has nothing to do with actual thread counts. I suck. BXT only has 1 slice, and there is some ambiguity about subslices, so just reserve the max possible for now. It looks like this might fix: piglit.spec.glsl-1_50.execution.variable-indexing.gs-output-array-vec4-index-wr.bxtm64. I kind of question why that is, but it is what Jenkins says. Mark is current running some of the other blacklisted tests on this patch. (it effects anything requiring scratch space). Cc: mesa-stable <[email protected]> Cc: Neil Roberts <[email protected]> Signed-off-by: Ben Widawsky <[email protected]> Acked-by: Kenneth Graunke <[email protected]> Tested-by: Mark Janes <[email protected]>
-rw-r--r--src/mesa/drivers/dri/i965/brw_device_info.c2
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 b8148bf701e..7ab70fef1e6 100644
--- a/src/mesa/drivers/dri/i965/brw_device_info.c
+++ b/src/mesa/drivers/dri/i965/brw_device_info.c
@@ -390,7 +390,7 @@ static const struct brw_device_info brw_device_info_bxt = {
.max_hs_threads = 56,
.max_ds_threads = 56,
.max_gs_threads = 56,
- .max_wm_threads = 32,
+ .max_wm_threads = 64 * 3,
.max_cs_threads = 28,
.urb = {
.size = 64,