Repository : ssh://darcs.haskell.org//srv/darcs/nofib On branch : master
http://hackage.haskell.org/trac/ghc/changeset/aed5cc3f30e0d004936728467d59daabae95f2b4 >--------------------------------------------------------------- commit aed5cc3f30e0d004936728467d59daabae95f2b4 Author: Simon Marlow <[email protected]> Date: Tue Apr 5 10:00:08 2011 +0100 increase the runtime a bit >--------------------------------------------------------------- parallel/coins/Makefile | 7 ++++++- 1 files changed, 6 insertions(+), 1 deletions(-) diff --git a/parallel/coins/Makefile b/parallel/coins/Makefile index 5415c48..faff237 100644 --- a/parallel/coins/Makefile +++ b/parallel/coins/Makefile @@ -1,7 +1,12 @@ TOP = ../.. include $(TOP)/mk/boilerplate.mk -SRC_RUNTEST_OPTS += 3 863 +# This version just counts the results, and runs in constant space: +# SRC_RUNTEST_OPTS += 7 1163 + +# This version builds a list of the results, and needs a lot of memory: +SRC_RUNTEST_OPTS += 3 873 + SRC_HC_OPTS += -package parallel include $(TOP)/mk/target.mk _______________________________________________ Cvs-ghc mailing list [email protected] http://www.haskell.org/mailman/listinfo/cvs-ghc
