Parallel
From HaskellWiki
(Difference between revisions)
(stub) |
(→Get started) |
||
| Line 2: | Line 2: | ||
== Get started == | == 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 and refine with Strategies | ||
| + | # Manage simultaneous IO actions (eg. multiple connections on a web server) | ||
| + | #: Start with Concurrent Haskell | ||
| + | # 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. | ||
== Dig deeper == | == Dig deeper == | ||
Revision as of 13:16, 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 and refine with Strategies
- Manage simultaneous IO actions (eg. multiple connections on a web server)
- Start with Concurrent Haskell
- 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.
