[pypy-commit] pypy trace-limit: And a still-lower limit

arigo noreply at buildbot.pypy.org
Sun Aug 14 04:48:06 CEST 2011


Author: Armin Rigo <arigo at tunes.org>
Branch: trace-limit
Changeset: r46490:09b6c4f57c67
Date: 2011-08-14 02:49 +0000
http://bitbucket.org/pypy/pypy/changeset/09b6c4f57c67/

Log:	And a still-lower limit

diff --git a/pypy/rlib/jit.py b/pypy/rlib/jit.py
--- a/pypy/rlib/jit.py
+++ b/pypy/rlib/jit.py
@@ -292,7 +292,7 @@
 PARAMETERS = {'threshold': 1032, # just above 1024
               'function_threshold': 1617, # slightly more than one above
               'trace_eagerness': 200,
-              'trace_limit': 6000,
+              'trace_limit': 4000,
               'inlining': 1,
               'loop_longevity': 1000,
               'retrace_limit': 5,


More information about the pypy-commit mailing list