Home » Computer Science Organization

Computer Science Organization | Parallel Processing

In this article, we will learn about the Parallel Processing and its classification in Computer Science Organization.
Submitted by Shivangi Jain, on July 07, 2018

Parallel Processing

Parallel processing is processing of the data concurrently. We process the data concurrently to fulfill the demands of the increasingly high performance so that to achieve better throughput instead of processing each instruction sequentially as in a conventional computer.

We can achieve parallelism in two ways:

1) Multiple functional units

These systems have two or more ALUs so two or more instruction can be executed at the same time.

2) Multiple processors

These systems have two or more processors operating concurrently.

The earlier processors had only one arithmetic and logic unit in its CPU. Furthermore, the ALU could only perform one function at a time, so that the process for executing a long sequence of arithmetic and logic instruction is quite slow. But nowadays the processors are available with multiple functional units, these multiple functional units used to execute the function of ALU which can be distributed and operate in parallel so that the speed of the processor's increases.

Micheal J.Flynn made an informal and widely used classification of parallelism processor in 1966, which is based on the number of simultaneous instruction and data streams seen by the processor during program execution.

Classifications of Parallel processing

The classification divides computers into four major groups:

  1. Single instruction stream - single data stream
  2. Single instruction stream - multiple data streams
  3. Multiple instruction streams - single data stream
  4. Multiple instruction streams - multiple data streams

1) Single data stream - single data stream (SISD)

Most conventional machines with one CPU containing a single arithmetic-logic unit capable of only scalar arithmetic fall into this category. They may have more than one functional unit, but all functional units are controlled by a single control unit.

SISD

2) Single instruction stream – multiple data stream (SIMD)

SIMD has multiple processing units and one control unit. They correspond to array processors. In SIMD, all the processing elements received the same instruction from the control unit but operate on different data sets from distinct data streams.

SIMD

3) Multiple instruction stream single data stream (MISD)

In MISD, there are n processor units each receiving distinct instruction operating over the same data stream and its derivatives. This means one processor becomes the input of the next processor.

MISD

4) Multiple instruction stream multiple data stream (MIMD)

In MIMD, there is more than one processor unit having the ability to execute several programs simultaneously. This category involves most of the multiprocessors system and multiple computers systems.

MIMD



Comments and Discussions!

Load comments ↻





Copyright © 2024 www.includehelp.com. All rights reserved.