[pypy-commit] benchmarks default: merge

fijal noreply at buildbot.pypy.org
Sat Jul 21 13:36:10 CEST 2012


Author: Maciej Fijalkowski <fijall at gmail.com>
Branch: 
Changeset: r185:ff7b35837d0f
Date: 2012-07-21 13:35 +0200
http://bitbucket.org/pypy/benchmarks/changeset/ff7b35837d0f/

Log:	merge

diff --git a/benchmarks.py b/benchmarks.py
--- a/benchmarks.py
+++ b/benchmarks.py
@@ -63,7 +63,10 @@
              'json_bench']:
     _register_new_bm(name, name, globals(), **opts.get(name, {}))
 for name in ['names', 'iteration', 'tcp', 'pb', 'web']:#, 'accepts']:
-    iteration_scaling = 1.0
+    if name == 'web':
+        iteration_scaling = 0.2
+    else:
+        iteration_scaling = 1.0
     _register_new_bm_twisted(name, 'twisted_' + name,
                      globals(), bm_env={'PYTHONPATH': ':'.join(TWISTED)},
                                  iteration_scaling=iteration_scaling)


More information about the pypy-commit mailing list