Difference between revisions of "Parallel"

From HaskellWiki
Jump to navigation Jump to search
(Relevant content transferred to "Parallelism" and "Concurrency")
Tag: New redirect
 
(46 intermediate revisions by 6 users not shown)
Line 1: Line 1:
Parallelism and Concurrency in Haskell
+
#REDIRECT [[Parallelism]]
 
== 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 ('''pseq''', '''par''') and refine with Strategies
 
# Manage simultaneous IO actions (eg. multiple connections on a web server)
 
#: Start with Concurrent Haskell ('''forkIO''', '''MVar''')
 
# 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 ==
 
 
=== Tools ===
 
 
* [http://research.microsoft.com/en-us/projects/threadscope|Threadscope] - parallel programs not getting faster? Use the Threadscope debugger and watch sparks fly.
 
* Comprehensive list of [[Applications_and_libraries/Concurrency_and_parallelism|Parallelism and Concurrency libraries]]
 
 
=== Community ===
 
 
== Find out more ==
 
 
=== Research ===
 

Latest revision as of 12:02, 9 May 2024

Redirect to: