aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/run_tests/performance
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2016-09-16 11:25:32 -0700
committerGravatar Craig Tiller <ctiller@google.com>2016-09-16 11:25:32 -0700
commit8c985c286640a2f1c94cd89aa7324ce357a3d742 (patch)
tree82442d62a729bb2ff546a7115eda825c5fa978b2 /tools/run_tests/performance
parent5709469c4643102130cc4a4745c8bf0a591121dd (diff)
Allow more sync threads
Diffstat (limited to 'tools/run_tests/performance')
-rw-r--r--tools/run_tests/performance/scenario_config.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/run_tests/performance/scenario_config.py b/tools/run_tests/performance/scenario_config.py
index 5621c205f2..f4ccfead0c 100644
--- a/tools/run_tests/performance/scenario_config.py
+++ b/tools/run_tests/performance/scenario_config.py
@@ -257,7 +257,7 @@ class CXXLanguage:
for channels in geometric_progression(1, 500, math.sqrt(10)):
for outstanding in geometric_progression(1, 20000, math.sqrt(10)):
- if synchronicity == 'sync' and outstanding > 400: continue
+ if synchronicity == 'sync' and outstanding > 1200: continue
if outstanding < channels: continue
yield _ping_pong_scenario(
'cpp_protobuf_%s_unary_qps_unconstrained_%s_%d_channels_%d_outstanding' % (synchronicity, secstr, channels, outstanding),