Author: Armin Rigo <[email protected]>
Branch: jit-counter
Changeset: r67785:a8ce9a9c7f21
Date: 2013-10-31 17:15 +0100
http://bitbucket.org/pypy/pypy/changeset/a8ce9a9c7f21/

Log:    Increase the size of the timetable cache. It seems to suffer from a
        bit too many collisions when running translate.py (not too
        surprizing but still)

diff --git a/rpython/jit/metainterp/counter.py 
b/rpython/jit/metainterp/counter.py
--- a/rpython/jit/metainterp/counter.py
+++ b/rpython/jit/metainterp/counter.py
@@ -9,7 +9,7 @@
 
 
 class JitCounter:
-    DEFAULT_SIZE = 4096
+    DEFAULT_SIZE = 8192
 
     def __init__(self, size=DEFAULT_SIZE, translator=None):
         "NOT_RPYTHON"
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to