Difference between revisions of "Talk:Fibonacci primes in parallel"

From HaskellWiki
Jump to navigation Jump to search
(No difference)

Revision as of 20:50, 26 May 2008

I note you're compiling your code with:

   ghc --make –threaded parfibs.hs 

As this is performance sensitive, it makes sense to turn on the optimiser:

   ghc -O2 -fvia-C -optc-O2 --make –threaded parfibs.hs 

dons 20:50, 26 May 2008 (UTC)