Difference between revisions of "Parallel"

From HaskellWiki
Jump to navigation Jump to search
m
(research as subpage)
Line 26: Line 26:
 
* Comprehensive list of [[Applications_and_libraries/Concurrency_and_parallelism|Parallelism and Concurrency libraries]]
 
* Comprehensive list of [[Applications_and_libraries/Concurrency_and_parallelism|Parallelism and Concurrency libraries]]
   
== Books and tutorials ==
+
== Documentation ==
   
 
* [[Parallel/Reading|Parallel Haskell reading]]
 
* [[Parallel/Reading|Parallel Haskell reading]]
  +
* [[Performance/Concurrency Concurrency performance]]
 
  +
* [[Parallel/Research|Research in parallelism and concurrency]]
== Research ==
 

Revision as of 16:07, 16 March 2011

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

Documentation