aboutsummaryrefslogtreecommitdiffstats
path: root/src/gallium
diff options
context:
space:
mode:
authorTim Rowley <[email protected]>2017-06-21 14:57:10 -0500
committerTim Rowley <[email protected]>2017-06-30 13:26:19 -0500
commit80bd5cd9d0254855edb79e499386e92de3c15941 (patch)
treecb84ba07dad2864c1d3ed45d912ad63bb5bb2a33 /src/gallium
parentab564c7ab4396b9b9059bb18c571bb47d7df7ce2 (diff)
swr/rast: increase number of possible draws in flight
Increases performance of some large workloads on KNL by ~30%. Reviewed-by: Bruce Cherniak <bruce.cherniak at intel.com>
Diffstat (limited to 'src/gallium')
-rw-r--r--src/gallium/drivers/swr/rasterizer/codegen/knob_defs.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/swr/rasterizer/codegen/knob_defs.py b/src/gallium/drivers/swr/rasterizer/codegen/knob_defs.py
index c8eb2a38481..09e31246021 100644
--- a/src/gallium/drivers/swr/rasterizer/codegen/knob_defs.py
+++ b/src/gallium/drivers/swr/rasterizer/codegen/knob_defs.py
@@ -130,7 +130,7 @@ KNOBS = [
['MAX_DRAWS_IN_FLIGHT', {
'type' : 'uint32_t',
- 'default' : '128',
+ 'default' : '256',
'desc' : ['Maximum number of draws outstanding before API thread blocks.',
'This value MUST be evenly divisible into 2^32'],
'category' : 'perf',