Author: Matti Picus <[email protected]>
Branch: chameleon
Changeset: r432:09d5bf1ff68d
Date: 2020-01-07 15:30 +0200
http://bitbucket.org/pypy/benchmarks/changeset/09d5bf1ff68d/
Log: limit table size to run with <16GB since pypy chews up gb of memory
diff --git a/unladen_swallow/performance/bm_spitfire.py
b/unladen_swallow/performance/bm_spitfire.py
--- a/unladen_swallow/performance/bm_spitfire.py
+++ b/unladen_swallow/performance/bm_spitfire.py
@@ -53,7 +53,7 @@
spitfire.compiler.options.o3_options,
{"enable_filters": False})
- table = [xrange(1000) for _ in xrange(1000)]
+ table = [xrange(1000) for _ in xrange(500)]
# Warm up Spitfire.
zzz = spitfire_tmpl_o4(search_list=[{"table": table}]).main()
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit