[pypy-commit] pypy stmgc-c8-gil-like: Bump the maximum memory from 2.5 to 7.5 GB

arigo noreply at buildbot.pypy.org
Sun Jun 14 18:06:14 CEST 2015


Author: Armin Rigo <arigo at tunes.org>
Branch: stmgc-c8-gil-like
Changeset: r78093:119c613c7c94
Date: 2015-06-14 17:07 +0100
http://bitbucket.org/pypy/pypy/changeset/119c613c7c94/

Log:	Bump the maximum memory from 2.5 to 7.5 GB

diff --git a/rpython/translator/stm/src_stm/stm/core.h b/rpython/translator/stm/src_stm/stm/core.h
--- a/rpython/translator/stm/src_stm/stm/core.h
+++ b/rpython/translator/stm/src_stm/stm/core.h
@@ -16,7 +16,7 @@
 #endif
 
 
-#define NB_PAGES            (2500*256)    // 2500MB
+#define NB_PAGES            (7500*256)    // 7500MB
 #define NB_SEGMENTS         (STM_NB_SEGMENTS+1) /* +1 for sharing seg 0 */
 #define NB_SEGMENTS_MAX     240    /* don't increase NB_SEGMENTS past this */
 #define NB_NURSERY_PAGES    (STM_GC_NURSERY/4)


More information about the pypy-commit mailing list