[Haskell-cafe] Re: Paralelism and Distribution in Haskell

Don Stewart dons at galois.com
Mon Sep 6 18:17:56 EDT 2010


waldmann:
> http://book.realworldhaskell.org/read/concurrent-and-multicore-programming.html
> 
> http://www.haskell.org/haskellwiki/GHC/Data_Parallel_Haskell
> Although the last two edits on that page are from 2010 and 2009.
> So what *is* the current status of DPH?
> 

Note that DPH is a programming model, but the implementation currently
targets shared memory multicores (and to some extent GPUs), not
distributed systems.

Since GHC 6.10 DPH was in "technology preview" mode (alpha), since 6.12
it is more stable, and more reliable, though significant work is still
happening with the vectorizer in GHC HEAD (so expect even more
reliable performance in GHC 6.14)

-- Don


More information about the Haskell-Cafe mailing list