mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-04-19 05:50:36 +02:00
i965: Fix max_wm_threads for CHV
Change max_wm_threads to match the spec on CHV. The max number of threads in 3DSTATE_PS is always programmed to 64 and the hardware internally scales that depending on the GT SKU. So this doesn't change the max number of threads actually used, but it does affect the scratch space calculation. On CHV the old value was too small, so the amount of scratch space allocated wasn't sufficient to satisfy the actual max number of threads used. Cc: mesa-stable@lists.freedesktop.org Reviewed-by: Kenneth Graunke <kenneth@whitecape.org> Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
This commit is contained in:
parent
c8761c8559
commit
99754446ab
1 changed files with 1 additions and 1 deletions
|
|
@ -239,7 +239,7 @@ static const struct brw_device_info brw_device_info_chv = {
|
|||
.has_llc = false,
|
||||
.max_vs_threads = 80,
|
||||
.max_gs_threads = 80,
|
||||
.max_wm_threads = 102,
|
||||
.max_wm_threads = 128,
|
||||
.urb = {
|
||||
.size = 128,
|
||||
.min_vs_entries = 64,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue