Parallel

From HaskellWiki
Revision as of 15:41, 16 March 2011 by EricKow (talk | contribs)
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Parallelism and Concurrency in Haskell

Getting started

Haskell supports both pure parallelism and explicit concurrency. How would you like to begin?

  1. Speed up your code by making it run on multicore:
    Start with Control.Parallel (pseq, par) and refine with Strategies
  2. Manage simultaneous IO actions (eg. multiple connections on a web server)
    Start with Concurrent Haskell (forkIO, MVar)
  3. Work with clusters or do distributed programming
    Distributed programming is still ongoing research. See below for current efforts.
    In the meantime, you could use the Haskell MPI bindings, which use Concurrent Haskell and the MPI library.

Community

News

Tools

Books and tutorials

Research