Talk:Fibonacci primes in parallel

From HaskellWiki
Revision as of 20:50, 26 May 2008 by DonStewart (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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)