summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDave Airlie <airlied@redhat.com>2015-12-04 02:08:12 +0000
committerDave Airlie <airlied@redhat.com>2015-12-07 09:59:02 +1000
commita2885d9cf902071d1c8a61a2906017462cf7bd0e (patch)
tree347bf8f0d0b3f7c43479b12f61cc45b757b96004
parentfe64a0c8bfd439fa474cef2e2080c3040a98120e (diff)
r600g: reduce number of ps thread on caicos
this allows tess apps to start Signed-off-by: Dave Airlie <airlied@redhat.com>
-rw-r--r--src/gallium/drivers/r600/evergreen_state.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/r600/evergreen_state.c b/src/gallium/drivers/r600/evergreen_state.c
index 662bef72d8..571ea86091 100644
--- a/src/gallium/drivers/r600/evergreen_state.c
+++ b/src/gallium/drivers/r600/evergreen_state.c
@@ -2820,7 +2820,7 @@ void evergreen_init_atom_start_cs(struct r600_context *rctx)
num_ls_stack_entries = 42;
break;
case CHIP_CAICOS:
- num_ps_threads = 128;
+ num_ps_threads = 96;
num_vs_threads = 10;
num_gs_threads = 10;
num_es_threads = 10;