Blog articles/Parallel
Contents |
[edit]
1 Parallelism and Concurrency
[edit]
2 Background
- Making the transition from sequential to implicit parallel programming
- Part 1: How sequential languages obscure parallelism
- Part 2: How to achieve parallel execution
- Part 3: Explicit parallel programming with threads and locks
- Part 4: Explicit parallelism: message-passing programming
- Part 5: Implicit parallel programming: Declarative languages
- Part 6: So, why aren't we using functional languages yet?
[edit]
2.1 Threads
- Threads Considered Harmful (discusses The Problem with Threads)
- Fast, parallel log file processing in Haskell
[edit]
2.2 Transactional memory
[edit]
2.3 Nested data paralellism
- Nested Data Parallelism in Haskell (video)
- More Haskell parallelism
- Nested Data Parallelism in Haskell
[edit]
2.4 Actors
[edit]
