Author: Armin Rigo <[email protected]> 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) _______________________________________________ pypy-commit mailing list [email protected] https://mail.python.org/mailman/listinfo/pypy-commit
