Parallel
From HaskellWiki
(Difference between revisions)
(→Community) |
(→News) |
||
| Line 21: | Line 21: | ||
== News == | == News == | ||
| + | |||
| + | * 2011-03-31 [http://www.well-typed.com/blog/52 Parallel Haskell Digest 1] | ||
== Tools == | == Tools == | ||
Revision as of 10:18, 20 April 2011
Parallelism and Concurrency in Haskell
Contents |
1 Getting started
Haskell supports both pure parallelism and explicit concurrency. How would you like to begin?
- Speed up your code by making it run on multicore:
- Start with Control.Parallel (pseq, par) and refine with Strategies
- Manage simultaneous IO actions (eg. multiple connections on a web server)
- Start with Concurrent Haskell (forkIO, MVar)
- 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.
2 Community
- Ask questions on Haskell Cafe
- See what parallel-haskell mailing developers are working on
- Follow @parallelhaskell on Twitter
- StackOverflow on Haskell parallelism and concurrency
3 News
- 2011-03-31 Parallel Haskell Digest 1
4 Tools
- Threadscope - parallel programs not getting faster? Use the Threadscope debugger and watch sparks fly.
- Comprehensive list of Parallelism and Concurrency libraries
