Difference between revisions of "Parallel"

From HaskellWiki
Jump to navigation Jump to search
m
Line 13: Line 13:
 
#: Meanwhile look out for [[Parallel/Research|ongoing research]] into distributed Haskell.
 
#: Meanwhile look out for [[Parallel/Research|ongoing research]] into distributed Haskell.
   
  +
<div class="wrap">
== Community ==
 
  +
<div class="cols3 w1000" style="margin: 0 auto; text-align: left">
 
  +
<div class="c1"><div class="pad">
* The [https://groups.google.com/group/parallel-haskell parallel-haskell mailing list]
 
* Follow [http://twitter.com/#!/parallelhaskell @parallelhaskell] on Twitter [[image:Twitter-mini.png]]
 
* StackOverflow on Haskell [http://stackoverflow.com/questions/tagged/haskell%2bparallel parallelism] and [http://stackoverflow.com/questions/tagged/haskell%2bconcurrency concurrency]
 
 
== News ==
 
 
 
== Tools ==
 
== Tools ==
   
Line 30: Line 25:
 
* [[Parallel/Reading|Parallel Haskell reading]]
 
* [[Parallel/Reading|Parallel Haskell reading]]
 
* [[Parallel/Research|Current research]]
 
* [[Parallel/Research|Current research]]
  +
  +
</div></div>
  +
<div class="c2"><div class="pad">
 
== Community ==
  +
 
* The [https://groups.google.com/group/parallel-haskell parallel-haskell mailing list]
 
* Follow [http://twitter.com/#!/parallelhaskell @parallelhaskell] on Twitter [[image:Twitter-mini.png]]
 
* StackOverflow on Haskell [http://stackoverflow.com/questions/tagged/haskell%2bparallel parallelism] and [http://stackoverflow.com/questions/tagged/haskell%2bconcurrency concurrency]
  +
 
== News ==
  +
</div></div>
  +
</div>
  +
</div>
   
 
[[Category:Parallel]]
 
[[Category:Parallel]]

Revision as of 16:49, 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
    Learn about concurrency first and then use the Haskell MPI bindings.
    Meanwhile look out for ongoing research into distributed Haskell.

Tools

Documentation

Community

News