[pypy-svn] pypy default: Fix the value according to the comment just below.
amauryfa
commits-noreply at bitbucket.org
Fri Apr 1 13:57:24 CEST 2011
Author: Amaury Forgeot d'Arc <amauryfa at gmail.com>
Branch:
Changeset: r43078:4d87baf21b10
Date: 2011-04-01 00:23 +0200
http://bitbucket.org/pypy/pypy/changeset/4d87baf21b10/
Log: Fix the value according to the comment just below.
(although 1Gb of L2 cache would certainly be nice)
diff --git a/pypy/rpython/memory/gc/env.py b/pypy/rpython/memory/gc/env.py
--- a/pypy/rpython/memory/gc/env.py
+++ b/pypy/rpython/memory/gc/env.py
@@ -259,7 +259,7 @@
get_L2cache = globals().get('get_L2cache_' + sys.platform,
lambda: -1) # implement me for other platforms
-NURSERY_SIZE_UNKNOWN_CACHE = 1024*1024*1024
+NURSERY_SIZE_UNKNOWN_CACHE = 1024*1024
# arbitrary 1M. better than default of 131k for most cases
# in case it didn't work
More information about the Pypy-commit
mailing list