Multiprocessing (MP) is the use of two or more
central processing unit
A central processing unit (CPU), also called a central processor, main processor, or just processor, is the primary Processor (computing), processor in a given computer. Its electronic circuitry executes Instruction (computing), instructions ...
s (CPUs) within a single
computer system.
The term also refers to the ability of a system to support more than one processor or the ability to allocate tasks between them. There are many variations on this basic theme, and the definition of multiprocessing can vary with context, mostly as a function of how CPUs are defined (
multiple cores on one
die, multiple dies in one
package, multiple packages in one
system unit, etc.).
A multiprocessor is a computer system having two or more
processing units (multiple processors) each sharing
main memory and peripherals, in order to simultaneously process programs. A 2009 textbook defined multiprocessor system similarly, but noted that the processors may share "some or all of the system’s memory and I/O facilities"; it also gave tightly coupled system as a synonymous term.
At the
operating system
An operating system (OS) is system software that manages computer hardware and software resources, and provides common daemon (computing), services for computer programs.
Time-sharing operating systems scheduler (computing), schedule tasks for ...
level, ''multiprocessing'' is sometimes used to refer to the execution of multiple concurrent
processes in a system, with each process running on a separate CPU or core, as opposed to a single process at any one instant.
When used with this definition, multiprocessing is sometimes contrasted with
multitasking, which may use just a single processor but switch it in time slices between tasks (i.e. a
time-sharing system). Multiprocessing however means true parallel execution of multiple processes using more than one processor.
Multiprocessing doesn't necessarily mean that a single process or task uses more than one processor simultaneously; the term
parallel processing is generally used to denote that scenario.
Other authors prefer to refer to the operating system techniques as
multiprogramming and reserve the term ''multiprocessing'' for the hardware aspect of having more than one processor.
The remainder of this article discusses multiprocessing only in this hardware sense.
In
Flynn's taxonomy
Flynn's taxonomy is a classification of computer architectures, proposed by Michael J. Flynn in 1966 and extended in 1972. The classification system has stuck, and it has been used as a tool in the design of modern processors and their functionalit ...
, multiprocessors as defined above are
MIMD machines.
As the term "multiprocessor" normally refers to tightly coupled systems in which all processors share memory, multiprocessors are not the entire class of MIMD machines, which also contains
message passing multicomputer systems.
Key topics
Processor symmetry
In a multiprocessing system, all CPUs may be equal, or some may be reserved for special purposes. A combination of hardware and
operating system
An operating system (OS) is system software that manages computer hardware and software resources, and provides common daemon (computing), services for computer programs.
Time-sharing operating systems scheduler (computing), schedule tasks for ...
software design considerations determine the symmetry (or lack thereof) in a given system. For example, hardware or software considerations may require that only one particular CPU respond to all hardware interrupts, whereas all other work in the system may be distributed equally among CPUs; or execution of kernel-mode code may be restricted to only one particular CPU, whereas user-mode code may be executed in any combination of processors. Multiprocessing systems are often easier to design if such restrictions are imposed, but they tend to be less efficient than systems in which all CPUs are utilized.
Systems that treat all CPUs equally are called
symmetric multiprocessing (SMP) systems. In systems where all CPUs are not equal, system resources may be divided in a number of ways, including
asymmetric multiprocessing (ASMP),
non-uniform memory access (NUMA) multiprocessing, and
clustered multiprocessing.
Master/slave multiprocessor system
In a master/slave multiprocessor system, the master CPU is in control of the computer and the slave CPU(s) performs assigned tasks. The CPUs can be completely different in terms of speed and architecture. Some (or all) of the CPUs can share a common bus, each can also have a private bus (for private resources), or they may be isolated except for a common communications pathway. Likewise, the CPUs can share common RAM and/or have private RAM that the other processor(s) cannot access. The roles of master and slave can change from one CPU to another.
Two early examples of a mainframe master/slave multiprocessor are the
Bull Gamma 60 and the
Burroughs B5000.
An early example of a master/slave multiprocessor system of microprocessors is the Tandy/Radio Shack
TRS-80 Model 16 desktop computer which came out in February 1982 and ran the multi-user/multi-tasking
Xenix operating system, Microsoft's version of UNIX (called TRS-XENIX). The Model 16 has two microprocessors: an 8-bit
Zilog Z80 CPU running at 4 MHz, and a 16-bit
Motorola 68000 CPU running at 6 MHz. When the system is booted, the Z-80 is the master and the Xenix boot process initializes the slave 68000, and then transfers control to the 68000, whereupon the CPUs change roles and the Z-80 becomes a slave processor responsible for all I/O operations including disk, communications, printer and network, as well as the keyboard and integrated monitor, while the operating system and applications run on the 68000 CPU. The Z-80 can be used to do other tasks.
The earlier
TRS-80 Model II, which was released in 1979, could also be considered a multiprocessor system as it had both a Z-80 CPU and an Intel 8021 microcontroller in the keyboard. The 8021 made the Model II the first desktop computer system with a separate detachable lightweight keyboard connected with by a single thin flexible wire, and likely the first keyboard to use a dedicated microcontroller, both attributes that would later be copied years later by Apple and IBM.
Instruction and data streams
In multiprocessing, the processors can be used to execute a single sequence of instructions in multiple contexts (
single instruction, multiple data or SIMD, often used in
vector processing
In computing, a vector processor or array processor is a central processing unit (CPU) that implements an instruction set where its Instruction (computer science), instructions are designed to operate efficiently and effectively on large Array d ...
), multiple sequences of instructions in a single context (
multiple instruction, single data or MISD, used for
redundancy in fail-safe systems and sometimes applied to describe
pipelined processors or
hyper-threading), or multiple sequences of instructions in multiple contexts (
multiple instruction, multiple data or MIMD).
Processor coupling
Tightly coupled multiprocessor system
Tightly coupled multiprocessor systems contain multiple CPUs that are connected at the bus level. These CPUs may have access to a central shared memory (SMP or
UMA), or may participate in a memory hierarchy with both local and shared memory (SM)(
NUMA). The
IBM p690 Regatta is an example of a high end SMP system.
Intel
Intel Corporation is an American multinational corporation and technology company headquartered in Santa Clara, California, and Delaware General Corporation Law, incorporated in Delaware. Intel designs, manufactures, and sells computer compo ...
Xeon processors dominated the multiprocessor market for business PCs and were the only major x86 option until the release of
AMD's
Opteron range of processors in 2004. Both ranges of processors had their own onboard cache but provided access to shared memory; the Xeon processors via a common pipe and the Opteron processors via independent pathways to the system
RAM.
Chip multiprocessors, also known as
multi-core computing, involves more than one processor placed on a single chip and can be thought of the most extreme form of tightly coupled multiprocessing. Mainframe systems with multiple processors are often tightly coupled.
Loosely coupled multiprocessor system
Loosely coupled multiprocessor systems (often referred to as
clusters) are based on multiple standalone relatively low processor count
commodity computers interconnected via a high speed communication system (
Gigabit Ethernet is common). A Linux
Beowulf cluster is an example of a
loosely coupled system.
Tightly coupled systems perform better and are physically smaller than loosely coupled systems, but have historically required greater initial investments and may
depreciate rapidly; nodes in a loosely coupled system are usually inexpensive commodity computers and can be recycled as independent machines upon retirement from the cluster.
Power consumption is also a consideration. Tightly coupled systems tend to be much more energy-efficient than clusters. This is because a considerable reduction in power consumption can be realized by designing components to work together from the beginning in tightly coupled systems, whereas loosely coupled systems use components that were not necessarily intended specifically for use in such systems.
Loosely coupled systems have the ability to run different operating systems or OS versions on different systems.
Disadvantages
Merging data from multiple
threads or
processes may incur significant overhead due to
conflict resolution,
data consistency, versioning, and synchronization.
See also
*
Multiprocessor system architecture
*
Symmetric multiprocessing
*
Asymmetric multiprocessing
*
Multi-core processor
*
BMDFM – Binary Modular Dataflow Machine, a SMP MIMD runtime environment
*
Software lockout
*
OpenHMPP
References
{{Parallel computing
Parallel computing
Classes of computers
Computing terminology