Difference between revisions of "Parallel"

From HaskellWiki
Jump to navigation Jump to search
(toc not helpful for portal page)
(→‎News: job opportunity at Parallel Scientific)
Line 24: Line 24:
 
== News ==
 
== News ==
   
  +
* 2011-11-21 [http://www.haskell.org/pipermail/haskell-cafe/2011-November/097008.html Job Opportunity at Parallel Scientific]
 
* 2011-10-06 [http://www.well-typed.com/blog/60 Parallel Haskell Digest 6]
 
* 2011-10-06 [http://www.well-typed.com/blog/60 Parallel Haskell Digest 6]
 
* 2011-08-31 [http://www.well-typed.com/blog/58 Parallel Haskell Digest 5]
 
* 2011-08-31 [http://www.well-typed.com/blog/58 Parallel Haskell Digest 5]
* 2011-07-22 [http://www.well-typed.com/blog/56 Parallel Haskell Digest 4]
 
   
 
== Tools ==
 
== Tools ==

Revision as of 09:12, 16 December 2011


Parallelism and Concurrency in Haskell

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 (par, pseq) and refine with Strategies
    Find out more about parallelism basics
  2. Manage simultaneous IO actions (eg. multiple connections on a web server)
    Start with Concurrent Haskell (forkIO, MVar)
    Find out more about concurrency basics
  3. Work with clusters or do distributed programming
    Learn about concurrency first, then try using network protocol libraries like HTTP or zeromq.
    Meanwhile look out for ongoing research into distributed Haskell.

Community

News

Tools

Documentation