Personal tools

Parallel/Reading

From HaskellWiki

< Parallel(Difference between revisions)
Jump to: navigation, search
(Tutorials: Andres's tutorial)
Current revision (11:10, 18 December 2012) (edit) (undo)
(Tutorials: - Simon Marlow's tutorial)
 
Line 1: Line 1:
== Tutorials ==
== Tutorials ==
 +
* [http://community.haskell.org/~simonmar/par-tutorial.pdf Parallel and Concurrent Programming in Haskell] - tutorial by Simon Marlow. Code [https://github.com/simonmar/par-tutorial available on GitHub]
* "Real World Haskell" [http://book.realworldhaskell.org/read/concurrent-and-multicore-programming.html chapter 24]: an introduction to the most common forms of concurrent and parallel programming in GHC.
* "Real World Haskell" [http://book.realworldhaskell.org/read/concurrent-and-multicore-programming.html chapter 24]: an introduction to the most common forms of concurrent and parallel programming in GHC.
* “[http://research.microsoft.com/en-us/um/people/simonpj/papers/parallel/AFP08-notes.pdf A Tutorial on Parallel and Concurrent Programming in Haskell]”, Peyton Jones and Singh. 2008, a Step by step guide to implicit and explicit parallelism in Haskell, and transactional memory
* “[http://research.microsoft.com/en-us/um/people/simonpj/papers/parallel/AFP08-notes.pdf A Tutorial on Parallel and Concurrent Programming in Haskell]”, Peyton Jones and Singh. 2008, a Step by step guide to implicit and explicit parallelism in Haskell, and transactional memory

Current revision

Contents

1 Tutorials

2 Papers to learn with

See also Parallel/Research if you'd like to dig into the more research-oriented papers on Parallel Haskell

3 Surveys


4 Other