Parallel
From HaskellWiki
(Difference between revisions)
(→Community) |
|||
| Line 14: | Line 14: | ||
== Dig deeper == | == Dig deeper == | ||
| + | |||
| + | === Documentation === | ||
| + | |||
| + | * [[Parallel/Reading Parallel Haskell reading]] | ||
=== Tools === | === Tools === | ||
| Line 19: | Line 23: | ||
* [http://research.microsoft.com/en-us/projects/threadscope Threadscope] - parallel programs not getting faster? Use the Threadscope debugger and watch sparks fly. | * [http://research.microsoft.com/en-us/projects/threadscope Threadscope] - parallel programs not getting faster? Use the Threadscope debugger and watch sparks fly. | ||
* 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]] | ||
| + | |||
| + | == Stay in touch == | ||
| + | |||
| + | === News === | ||
=== Community === | === Community === | ||
| Line 27: | Line 35: | ||
== Find out more == | == Find out more == | ||
| + | |||
| + | === Documentation === | ||
=== Research === | === Research === | ||
Revision as of 15:33, 16 March 2011
Parallelism and Concurrency in Haskell
Contents |
1 Get 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
- 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.
2 Dig deeper
2.1 Documentation
2.2 Tools
- Threadscope - parallel programs not getting faster? Use the Threadscope debugger and watch sparks fly.
- Comprehensive list of Parallelism and Concurrency libraries
3 Stay in touch
3.1 News
3.2 Community
- The parallel-haskell mailing list
- Follow @parallelhaskell on Twitter
- StackOverflow on Haskell parallelism and concurrency
