Mesa (master): i965: Update WM maximum threads for G4X.

Eric Anholt anholt at kemper.freedesktop.org
Wed Nov 12 21:59:15 UTC 2008


Module: Mesa
Branch: master
Commit: 5cb7ba10cc6aebfb96c6425d3d822d2b0ac5e102
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=5cb7ba10cc6aebfb96c6425d3d822d2b0ac5e102

Author: Eric Anholt <eric at anholt.net>
Date:   Sun Nov  2 18:42:17 2008 -0800

i965: Update WM maximum threads for G4X.

---

 src/mesa/drivers/dri/i965/brw_wm_state.c |    9 +++++++--
 1 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/src/mesa/drivers/dri/i965/brw_wm_state.c b/src/mesa/drivers/dri/i965/brw_wm_state.c
index 61fe97a..fd46161 100644
--- a/src/mesa/drivers/dri/i965/brw_wm_state.c
+++ b/src/mesa/drivers/dri/i965/brw_wm_state.c
@@ -67,8 +67,13 @@ wm_unit_populate_key(struct brw_context *brw, struct brw_wm_unit_key *key)
 
    if (INTEL_DEBUG & DEBUG_SINGLE_THREAD)
       key->max_threads = 1;
-   else
-      key->max_threads = 32;
+   else {
+      /* WM maximum threads is number of EUs times number of threads per EU. */
+      if (BRW_IS_G4X(brw))
+	 key->max_threads = 10 * 5;
+      else
+	 key->max_threads = 8 * 4;
+   }
 
    /* CACHE_NEW_WM_PROG */
    key->total_grf = brw->wm.prog_data->total_grf;




More information about the mesa-commit mailing list