Difference between revisions of "Parallelism"

From HaskellWiki
Jump to navigation Jump to search
(copy from GHC/Concurrency (content to be divorced))
 
(Relevant content from "Parallel" transferred to here; various other changes)
 
(20 intermediate revisions by 6 users not shown)
Line 1: Line 1:
  +
''Note: you may want to read [[Parallelism vs. Concurrency]], as the terms have historically been conflated.''
== Parallel and Concurrent Programming in GHC ==
 
   
This page contains notes and information about how to write concurrent programs in GHC.
+
This page contains notes and information about how to write parallel programs in Haskell.
   
  +
For practicality, the content is GHC-centric at the moment, although this may change as Haskell evolves.
You may be interested in [[GHC/Parallel|parallelism]] (speeding up pure functions) instead. Have a look there too.
 
   
  +
== Overview ==
GHC provides multi-scale support for parallel programming, from very fine-grained, small "sparks", to coarse-grained explicit threads and locks, along with other models of concurrent and parallel programming, including actors, CSP-style concurrency, nested data parallelism and Intel Concurrent Collections. Synchronization between tasks is possible via messages, regular Haskell variables, MVar shared state or transactional memory.
 
   
  +
GHC provides multi-scale support for parallel programming, from very fine-grained, small "sparks" to nested data parallelism and strategies.
* See "Real World Haskell" [http://book.realworldhaskell.org/read/concurrent-and-multicore-programming.html chapter 24], for an introduction to the most common forms of concurrent and parallel programming in GHC.
 
* A [http://donsbot.wordpress.com/2009/09/03/parallel-programming-in-haskell-a-reading-list/ reading list for parallelism in Haskell].
 
* The [http://stackoverflow.com/questions/3063652/whats-the-status-of-multicore-programming-in-haskell status of parallel and concurrent programming] in Haskell.
 
 
The concurrent and parallel programming models in GHC can be divided into the following forms:
 
   
  +
== Getting started ==
* Very fine grained: parallel sparks and futures, as described in the paper "[http://www.haskell.org/~simonmar/bib/multicore-ghc-09_abstract.html Runtime Support for Multicore Haskell]"
 
* Fine grained: lightweight Haskell threads, explicit synchronization with STM or MVars. See the paper "Tackling the Awkward Squad" below.
 
* Nested data parallelism: a parallel programming model based on bulk data parallelism, in the form of the [http://www.haskell.org/haskellwiki/GHC/Data_Parallel_Haskell DPH] and [http://hackage.haskell.org/package/repa Repa] libraries for transparently parallel arrays.
 
* Intel [http://software.intel.com/en-us/blogs/2010/05/27/announcing-intel-concurrent-collections-for-haskell-01/ Concurrent Collections for Haskell]: a graph-oriented parallel programming model.
 
* [http://www.cs.kent.ac.uk/projects/ofa/chp/ CHP]: CSP-style concurrency for Haskell.
 
   
  +
Speed up your code by making it run on multicore:
The most important (as of 2010) to get to know are the basic "concurrent Haskell" model of threads using forkIO and MVars, the use of transactional memory via STM, implicit parallelism via sparks and, if you're interested in scientific programming specifically, nested data parallelism in Haskell.
 
  +
: Start with Control.Parallel ('''par''', '''pseq''')
  +
: [[Parallel/Reading|Learn more about parallelism]], then try using Strategies
   
  +
== GHC parallelism specifics ==
=== Starting points ===
 
   
 
You get access to parallelism operations by importing the library [http://www.haskell.org/ghc/docs/latest/html/libraries/base/Control-Parallel.html Control.Parallel].
* '''Basic concurrency: forkIO and MVars'''.
 
* '''Software Transactional Memory''' (STM) is a new way to coordinate concurrent threads. There's a separate [[Software transactional memory|Wiki page devoted to STM]].
 
: STM was added to GHC 6.4, and is described in the paper [http://research.microsoft.com/~simonpj/papers/stm/index.htm Composable memory transactions]. The paper [http://research.microsoft.com/~simonpj/papers/stm/lock-free.htm Lock-free data structures using Software Transactional Memory in Haskell] gives further examples of concurrent programming using STM.
 
   
 
{{GHC/Multicore}}
* '''Foreign function interface'''. If you are calling foreign functions in a concurrent program, you need to know about ''bound threads''. They are described in a Haskell workshop paper, [http://research.microsoft.com/~simonpj/Papers/conc-ffi/index.htm Extending the Haskell Foreign Function Interface with Concurrency]. The GHC Commentary [http://darcs.haskell.org/ghc/docs/comm/rts-libs/multi-thread.html Supporting multi-threaded interoperation] contains more detailed explanation of cooperation between FFI calls and multi-threaded runtime.
 
   
  +
Support for low-level parallelism features of modern processors continues to be added. As of version 7.8, GHC includes the ability to [https://ghc.haskell.org/trac/ghc/wiki/SIMD emit SIMD instructions], and also has a rudimentary ability to use [[AtomicMemoryOps|atomic memory operations]].
* '''Nested Data Parallelism'''. For an approach to exploiting the implicit parallelism in array programs for multiprocessors, see [[GHC/Data Parallel Haskell|Data Parallel Haskell]] (work in progress).
 
   
  +
== Community ==
=== Using concurrency in GHC ===
 
   
  +
* Ask questions on [[Mailing lists|Haskell Cafe]]
* You get access to concurrency operations by importing the library [http://www.haskell.org/ghc/docs/latest/html/libraries/base/Control-Concurrent.html Control.Concurrent].
 
  +
* See what [https://groups.google.com/group/parallel-haskell parallel-haskell] researchers and developers are working on
  +
* Get the latest from the [[Parallel GHC Project]]
  +
* Follow [http://twitter.com/#!/parallelhaskell @parallelhaskell] on Twitter [[image:Twitter-mini.png]]
  +
* StackOverflow on Haskell [http://stackoverflow.com/questions/tagged/haskell%2bparallel parallelism]
   
  +
== News ==
* The GHC manual gives a few useful flags that control scheduling (not usually necessary) [http://www.haskell.org/ghc/docs/latest/html/users_guide/sec-using-parallel.html#parallel-rts-opts RTS options].
 
   
  +
* 2012-04-20 [http://www.well-typed.com/blog/65 Parallel Haskell Digest 9]
=== Multicore GHC ===
 
  +
* 2012-03-02 [http://www.well-typed.com/blog/64 Parallel Haskell Digest 8]
  +
* 2011-12-24 [http://www.well-typed.com/blog/62 Parallel Haskell Digest 7]
  +
* 2011-11-21 [http://www.haskell.org/pipermail/haskell-cafe/2011-November/097008.html Job Opportunity at Parallel Scientific]
   
  +
== Tools ==
{{GHC/Multicore}}
 
  +
  +
* [[ThreadScope]] - parallel programs not getting faster? Use the ThreadScope debugger and watch those sparks fly.
  +
* Various [[Applications and libraries/Concurrency and parallelism|libraries]], including those for parallelism.
  +
  +
== Documentation ==
  +
  +
* [[Parallel/Glossary|Glossary]]
  +
* [[Parallel/Reading|Learning to use parallelism in Haskell]]
  +
* [[Parallel/Research|Current research]]
  +
* [http://chimera.labs.oreilly.com/books/1230000000929/index.html Parallel ... Programming in Haskell] (online book)
  +
  +
== Alternative approaches ==
  +
  +
* [https://www.cse.chalmers.se/edu/year/2012/course/pfp/Papers/strategies10.pdf Seq no more: Better Strategies for Parallel Haskell]
  +
  +
== See also ==
  +
  +
* [[:Category:Parallel|Parallel]] category
  +
* Parallelism [[Parallel/Research|research]]
   
=== Related work ===
 
   
  +
[[Category:GHC]]
* The Sun project to improve http://ghcsparc.blogspot.com/ GHC performance on Sparc]
 
  +
[[Category:Parallel]]
* A [http://www.well-typed.com/blog/38 Microsoft project to improve industrial applications of GHC parallelism].
 
* [http://www.haskell.org/~simonmar/bib/bib.html Simon Marlow's publications on parallelism and GHC]
 
* [http://www.macs.hw.ac.uk/~dsg/gph/ Glasgow Parallel Haskell]
 
* [http://www.macs.hw.ac.uk/~dsg/gdh/ Glasgow Distributed Haskell]
 
* http://www-i2.informatik.rwth-aachen.de/~stolz/dhs/
 
* http://www.informatik.uni-kiel.de/~fhu/PUBLICATIONS/1999/ifl.html
 
* [http://www.mathematik.uni-marburg.de/~eden Eden]
 

Latest revision as of 12:02, 9 May 2024

Note: you may want to read Parallelism vs. Concurrency, as the terms have historically been conflated.

This page contains notes and information about how to write parallel programs in Haskell.

For practicality, the content is GHC-centric at the moment, although this may change as Haskell evolves.

Overview

GHC provides multi-scale support for parallel programming, from very fine-grained, small "sparks" to nested data parallelism and strategies.

Getting started

Speed up your code by making it run on multicore:

Start with Control.Parallel (par, pseq)
Learn more about parallelism, then try using Strategies

GHC parallelism specifics

You get access to parallelism operations by importing the library Control.Parallel.

Since 2004, GHC supports running programs in parallel on an SMP or multi-core machine. How to do it:

  • Compile your program using the -threaded switch.
  • Run the program with +RTS -N2 to use 2 threads, for example (RTS stands for runtime system; see the GHC users' guide). You should use a -N value equal to the number of CPU cores on your machine (not including Hyper-threading cores). As of GHC v6.12, you can leave off the number of cores and all available cores will be used (you still need to pass -N however, like so: +RTS -N).
  • Concurrent threads (forkIO) will run in parallel, and you can also use the par combinator and Strategies from the Control.Parallel.Strategies module to create parallelism.
  • Use +RTS -sstderr for timing stats.
  • To debug parallel program performance, use ThreadScope.

Support for low-level parallelism features of modern processors continues to be added. As of version 7.8, GHC includes the ability to emit SIMD instructions, and also has a rudimentary ability to use atomic memory operations.

Community

News

Tools

  • ThreadScope - parallel programs not getting faster? Use the ThreadScope debugger and watch those sparks fly.
  • Various libraries, including those for parallelism.

Documentation

Alternative approaches

See also