Parallel computation: Difference between revisions

From Citizendium
Jump to navigation Jump to search
imported>Robert Tito
mNo edit summary
imported>Niek Sanders
(Bunch of organization and few new outline bullets.)
Line 8: Line 8:




===Hardware Support===
===Problem Domain===
 
===Algorithms===
 
===Hardware===
Typically the CPU must offer some atomic operations to allow for parallel code to be written.  There is also a famous algorithm which takes advantage of memory interlock to allow for mutual exclusion.
Typically the CPU must offer some atomic operations to allow for parallel code to be written.  There is also a famous algorithm which takes advantage of memory interlock to allow for mutual exclusion.


Line 14: Line 18:
* Test and Swap (for Lockfree programming)
* Test and Swap (for Lockfree programming)
* SIMD, MIMD instructions
* SIMD, MIMD instructions
* Memory Interlock
*# Dekker's Algorithm
===Software===


===Programming Language Support===
====Low Level Primitives====
* Semaphores
* Semaphores
* Mutexes
* Mutexes
Line 22: Line 30:
* Pure [[functional language (programming)|functional languages]]
* Pure [[functional language (programming)|functional languages]]


===Compiler Support===
====Compiler Support====
* Auto vectorizing [[compiler]]s
* Auto vectorizing [[compiler]]s
*# Compiler attempts to analyze loops to see which ones can be done in parallel
*# Compiler attempts to analyze loops to see which ones can be done in parallel
*# Exists in [[Intel]] and [[GNU C Compiler|GCC]]v4 compilers
*# Exists in [[Intel]] and [[GNU C Compiler|GCC]]v4 compilers
* Speciality languages for Parallel programming


===Library Support===
====Library Support====
* OpenMP
* OpenMP
*# Open standard
*# Open standard
Line 39: Line 48:
*# Well suited to [[cluster computing]].
*# Well suited to [[cluster computing]].
*# Major library is LAM/MPI.  Some vendors (e.g. Sun) also roll their own, optimized versions.
*# Major library is LAM/MPI.  Some vendors (e.g. Sun) also roll their own, optimized versions.
===Research===
===Related Topics===
* [[Distributed computation]]
===Citations===


[[Category:Computers Workgroup]]
[[Category:Computers Workgroup]]
[[Category:CZ Live]]
[[Category:CZ Live]]

Revision as of 07:11, 27 March 2007

In parallel computation, multiple code (programming) instructions are executed at the same time. This parallelism can range from coarse to fine grained. An example of coarse parallelism is a ray tracer rendering a separate output pixel on each available CPU. An example of fine grained parallelism is found in multiplying an n-dimensional vector by a scalar. The vector is cut up and a chunk is distributed to each CPU, the multiplication is done on each chunk, and the result is reassembled.

These examples illustrate key limitations to parallel computing. First, there is the overhead of distributing and reassembling the computation. Second, there is the challenge of developing parallel algorithms. In the ideal case, such as in a ray tracer, elements of the problem (pixels to be rendered) do not depend on one another. That is, the computing one output pixel does not require information or affect any of the other output pixels. These uncoupled problems are referred to as Embarrassingly Parallel. Many problems do not fit in to this category, an example being the classic N-body.

Parallel algorithms and programs are significantly more difficult to write and debug. However, as multicore processors (many armed with SIMD commands) become increasingly common, parallel computation is finding its way in to more mass-consumer code. (e.g. mp3 encoders using SIMD, photoshop multiprocessor support, etc).

Note that it is generally possible to run parallel code on a single processor. Multiple processors are simulated through context switching. When running on a single processor, parallel algorithms typically have worse performance than their serial analogues, mainly because of the overhead of the distribution/communication logic.


Problem Domain

Algorithms

Hardware

Typically the CPU must offer some atomic operations to allow for parallel code to be written. There is also a famous algorithm which takes advantage of memory interlock to allow for mutual exclusion.

  • Test and Set (TAS)
  • Test and Swap (for Lockfree programming)
  • SIMD, MIMD instructions
  • Memory Interlock
    1. Dekker's Algorithm

Software

Low Level Primitives

  • Semaphores
  • Mutexes
  • Monitors
  • Special purpose languages for parallel computation (Occam)
  • Pure functional languages

Compiler Support

  • Auto vectorizing compilers
    1. Compiler attempts to analyze loops to see which ones can be done in parallel
    2. Exists in Intel and GCCv4 compilers
  • Speciality languages for Parallel programming

Library Support

  • OpenMP
    1. Open standard
    2. Can be used to implement fine grained parallelism
    3. Built in support in many commercial compilers (Intel C/C++/FORTRAN, GCCv4, Sun CC)
    4. Uses meta-code to annotate which parts of a C or FORTRAN program can be parallelized.
    5. In C this is accomplished through the use of preprocessor pragmas
    6. Pragmas indicate things like "execute loop in parallel" or this variable has no dependency between iterations.
  • Message Passing Interface (MPI)
    1. Well suited to cluster computing.
    2. Major library is LAM/MPI. Some vendors (e.g. Sun) also roll their own, optimized versions.

Research

Related Topics

Citations