[pypy-svn] r77175 - pypy/branch/gen2-gc/pypy/rpython/memory/gc

arigo at codespeak.net arigo at codespeak.net
Sat Sep 18 16:32:51 CEST 2010


Author: arigo
Date: Sat Sep 18 16:32:49 2010
New Revision: 77175

Modified:
   pypy/branch/gen2-gc/pypy/rpython/memory/gc/minimark.py
Log:
Hah.  Just because we did a measure of "pypy-c translate --rtype
targetrpystonedalone" and got as the (visually) best result on a
graph the value 1.82.


Modified: pypy/branch/gen2-gc/pypy/rpython/memory/gc/minimark.py
==============================================================================
--- pypy/branch/gen2-gc/pypy/rpython/memory/gc/minimark.py	(original)
+++ pypy/branch/gen2-gc/pypy/rpython/memory/gc/minimark.py	Sat Sep 18 16:32:49 2010
@@ -109,7 +109,7 @@
         # the total size consumed; and after every minor collection, if the
         # total size is now more than 'major_collection_threshold' times,
         # we trigger the next major collection.
-        "major_collection_threshold": 1.75,
+        "major_collection_threshold": 1.82,
         }
 
     def __init__(self, config, chunk_size=DEFAULT_CHUNK_SIZE,



More information about the Pypy-commit mailing list