Personal tools
  • Home
  • Log in / create account
Views
  • Page
  • Discussion
  • View source
  • History

Concurrency

From HaskellWiki

(Redirected from GHC/Concurrency)
Jump to: navigation, search


This page contains notes and information about how to write concurrent programs in Haskell. If you're more interested in performance than non-determinism, learn about parallelism first.

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

Contents

  • 1 Overview
  • 2 Getting started
  • 3 Digging deeper
  • 4 GHC concurrency specifics
  • 5 Alternative approaches
  • 6 See also

1 Overview

GHC provides multi-scale support for parallel and concurrent 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.

2 Getting started

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.

See "Tackling the Awkward Squad" to get started.

From there, try the reading list for parallelism in Haskell.

3 Digging deeper

  • Software Transactional Memory (STM) is a newer way to coordinate concurrent threads. There's a separate Wiki page devoted to STM.
STM was added to GHC 6.4, and is described in the paper Composable memory transactions. The paper Lock-free data structures using Software Transactional Memory in Haskell gives further examples of concurrent programming using STM.
  • 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, Extending the Haskell Foreign Function Interface with Concurrency. The GHC Commentary Supporting multi-threaded interoperation contains more detailed explanation of cooperation between FFI calls and multi-threaded runtime.

4 GHC concurrency specifics

You get access to concurrency operations by importing the library Control.Concurrent.

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

  • Download a recent GHC.
  • 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.

5 Alternative approaches

  • CHP: CSP-style concurrency for Haskell.

6 See also

  • Parallel portal
  • Parallelism and concurrency research
Retrieved from "www.haskell.org/haskellwiki/Concurrency"
Navigation
  • Haskell
  • Wiki community
  • Recent changes
  • Random page
Toolbox
  • What links here
  • Related changes
  • Upload file
  • Special pages
  • Printable version
gipoco.com is neither affiliated with the authors of this page nor responsible for its contents. This is a safe-cache copy of the original web site.