Difference between revisions of "Parallel"

From HaskellWiki
Jump to navigation Jump to search
(→‎News: Parallel Haskell Digest 7)
(→‎Community: Parallel GHC project)
Line 19: Line 19:
 
* Ask questions on [[Mailing lists|Haskell Cafe]]
 
* Ask questions on [[Mailing lists|Haskell Cafe]]
 
* See what [https://groups.google.com/group/parallel-haskell parallel-haskell] researchers and developers are working on
 
* See what [https://groups.google.com/group/parallel-haskell parallel-haskell] researchers and developers are working on
  +
* Get the latest from the [[Parallel GHC Project]]
 
* Follow [http://twitter.com/#!/parallelhaskell @parallelhaskell] on Twitter [[image:Twitter-mini.png]]
 
* 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]
 
* StackOverflow on Haskell [http://stackoverflow.com/questions/tagged/haskell%2bparallel parallelism] and [http://stackoverflow.com/questions/tagged/haskell%2bconcurrency concurrency]

Revision as of 11:06, 5 January 2012


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