Benchmarks Game/Parallel
From HaskellWiki
(Difference between revisions)
m (added link to /KNucleotide) |
|||
| Line 9: | Line 9: | ||
* Parallel strategies are the lightest way to add SMP capabilities. | * Parallel strategies are the lightest way to add SMP capabilities. | ||
* Contact dons or sbahra on #haskell for access to a quad or eight-way benchmark machine, before uploading. | * Contact dons or sbahra on #haskell for access to a quad or eight-way benchmark machine, before uploading. | ||
| + | * See if you can use the new parallel GC to good effect: no entries currently do. | ||
| - | == Programs == | + | == Parallel Programs == |
| - | * [[/BinaryTrees]] | + | * [[/BinaryTrees]] and [[/BinaryTreesDPH]] |
| - | + | ||
* [[/Chameneos]] | * [[/Chameneos]] | ||
* [[/Fannkuch]] | * [[/Fannkuch]] | ||
| Line 21: | Line 21: | ||
* [[/SpectralNorm]] | * [[/SpectralNorm]] | ||
* [[/ThreadRing]] | * [[/ThreadRing]] | ||
| + | |||
| + | == Not yet parallelised == | ||
| + | |||
| + | * [[/Fasta]] | ||
| + | * [[/MeteorContest]] | ||
| + | * [[/NBody]] | ||
| + | * [[/Pidigits]] (''note GHC 6.10.1 has a GC bug illustrated by this program'') | ||
| + | * [[/ReverseComplement]] | ||
[[Category:Parallel]] | [[Category:Parallel]] | ||
Revision as of 18:49, 22 February 2009
Quad-core enabled parallel Haskell benchmark entries, for the 64 bit quad core shootout.
1 Advice
- Check the GC stats with +RTS -sstderr -RTS, if that number if over 5%, use -AxxxM to set a better default heap size.
- Use N+1 capabilities for SMP, e.g. +RTS -N5 -RTS, for the quad core.
- Take the single threaded, fast programs and parallise them
- Parallel strategies are the lightest way to add SMP capabilities.
- Contact dons or sbahra on #haskell for access to a quad or eight-way benchmark machine, before uploading.
- See if you can use the new parallel GC to good effect: no entries currently do.
2 Parallel Programs
- /BinaryTrees and /BinaryTreesDPH
- /Chameneos
- /Fannkuch
- /Knucleotide
- /Mandelbrot
- /RegexDNA
- /SpectralNorm
- /ThreadRing
3 Not yet parallelised
- /Fasta
- /MeteorContest
- /NBody
- /Pidigits (note GHC 6.10.1 has a GC bug illustrated by this program)
- /ReverseComplement
