[pypy-commit] pypy fix-trace-jit: bump trace limit

alex_gaynor noreply at buildbot.pypy.org
Mon Oct 28 19:41:36 CET 2013


Author: Alex Gaynor <alex.gaynor at gmail.com>
Branch: fix-trace-jit
Changeset: r67653:59778ec85aa8
Date: 2013-10-28 11:40 -0700
http://bitbucket.org/pypy/pypy/changeset/59778ec85aa8/

Log:	bump trace limit

diff --git a/rpython/rlib/jit.py b/rpython/rlib/jit.py
--- a/rpython/rlib/jit.py
+++ b/rpython/rlib/jit.py
@@ -455,7 +455,7 @@
 PARAMETERS = {'threshold': 1039, # just above 1024, prime
               'function_threshold': 1619, # slightly more than one above, also prime
               'trace_eagerness': 200,
-              'trace_limit': 6000,
+              'trace_limit': 8000,
               'inlining': 1,
               'loop_longevity': 1000,
               'retrace_limit': 5,


More information about the pypy-commit mailing list