Flynn's taxonomy

From Infogalactic: the planetary knowledge core
(Redirected from MPMD)
Jump to: navigation, search

Flynn's taxonomy is a classification of computer architectures, proposed by Michael Flynn in 1966.[1][2] The classification system has stuck, and has been used as a tool in design of modern processors and their functionalities. Since the rise of multiprocessing central processing units (CPUs), a multiprogramming context has evolved as an extension of the classification system.

Classifications

The four classifications defined by Flynn are based upon the number of concurrent instruction (or control) streams and data streams available in the architecture.

Flynn's taxonomy (multiprogramming context)
Single instruction stream Multiple instruction streams Single program Multiple programs
Single data stream SISD MISD
Multiple data streams SIMD MIMD SPMD MPMD


SISD (Single instruction stream, single data stream)

<templatestyles src="Module:Hatnote/styles.css"></templatestyles>

A sequential computer which exploits no parallelism in either the instruction or data streams. Single control unit (CU) fetches single instruction stream (IS) from memory. The CU then generates appropriate control signals to direct single processing element (PE) to operate on single data stream (DS) i.e. one operation at a time.

Examples of SISD architecture are the traditional uniprocessor machines like a PC (currently manufactured PCs have multiple cores) or old mainframes.

SIMD (Single instruction stream, multiple data streams)

<templatestyles src="Module:Hatnote/styles.css"></templatestyles>

A computer which exploits multiple data streams against a single instruction stream to perform operations which may be naturally parallelized. For example, an array processor or graphics processing unit (GPU)

MISD (Multiple instruction streams, single data stream)

<templatestyles src="Module:Hatnote/styles.css"></templatestyles>

Multiple instructions operate on a single data stream. Uncommon architecture which is generally used for fault tolerance. Heterogeneous systems operate on the same data stream and must agree on the result. Examples include the Space Shuttle flight control computer.[citation needed]

MIMD (Multiple instruction streams, multiple data streams)

<templatestyles src="Module:Hatnote/styles.css"></templatestyles>

Multiple autonomous processors simultaneously executing different instructions on different data. Distributed systems are generally recognized to be MIMD architectures; either exploiting a single shared memory space or a distributed memory space. A multi-core superscalar processor is a MIMD processor.

Diagram comparing classifications

Visually, these four architectures are shown below where each "PU" is a processing unit (of a uni-core or multi-core CPU):

SISD MISD
SISD.svg MISD.svg
SIMD MIMD
SIMD.svg MIMD.svg

Further divisions

As of 2006, all the top 10 and most of the TOP500 supercomputers are based on a MIMD architecture.

Some further divide the MIMD category into the two categories below,[3][4][5][6][7] and even further subdivisions are sometimes considered.[8]

SPMD (Single program, multiple data streams)

<templatestyles src="Module:Hatnote/styles.css"></templatestyles>

Multiple autonomous processors simultaneously executing the same program (but at independent points, rather than in the lockstep that SIMD imposes) on different data. Also referred to as "Single process, multiple data"[7] - the use of this terminology for SPMD is technically incorrect, as SPMD is a parallel execution model and assumes multiple cooperating processes executing a program. SPMD is the most common style of parallel programming.[9] The SPMD model and the term was proposed by Frederica Darema.[10] Gregory F. Pfister was a manager of the RP3 project, and Darema was part of the RP3 team.

MPMD (Multiple programs, multiple data streams)

Multiple autonomous processors simultaneously operating at least 2 independent programs. Typically such systems pick one node to be the "host" ("the explicit host/node programming model") or "manager" (the "Manager/Worker" strategy), which runs one program that farms out data to all the other nodes which all run a second program. Those other nodes then return their results directly to the manager. An example of this would be the Sony PlayStation 3 game console, with its SPU/PPU processor architecture.

References

  1. Lua error in package.lua at line 80: module 'strict' not found.
  2. Lua error in package.lua at line 80: module 'strict' not found.
  3. Lua error in package.lua at line 80: module 'strict' not found.
  4. [1] Archived September 1, 2006 at the Wayback Machine
  5. Lua error in package.lua at line 80: module 'strict' not found.
  6. Lua error in package.lua at line 80: module 'strict' not found.
  7. 7.0 7.1 [2] Archived February 3, 2007 at the Wayback Machine
  8. [3] Archived September 10, 2006 at the Wayback Machine
  9. Lua error in package.lua at line 80: module 'strict' not found.
  10. Lua error in package.lua at line 80: module 'strict' not found.

External links

This article is based on material taken from the Free On-line Dictionary of Computing prior to 1 November 2008 and incorporated under the "relicensing" terms of the GFDL, version 1.3 or later.