Introduction to Parallel Processing Ch 12 Pg 514

  • Slides: 35
Download presentation
Introduction to Parallel Processing Ch. 12, Pg. 514 -526 CS 147 Louis Huie 1

Introduction to Parallel Processing Ch. 12, Pg. 514 -526 CS 147 Louis Huie 1

Topics Covered l An Overview of Parallel Processing l Parallelism in Uniprocessor Systems l

Topics Covered l An Overview of Parallel Processing l Parallelism in Uniprocessor Systems l Organization of Multiprocessor § Flynn’s Classification § System Topologies § MIMD System Architectures 2

An Overview of Parallel Processing l What is parallel processing? § Parallel processing is

An Overview of Parallel Processing l What is parallel processing? § Parallel processing is a method to improve computer system performance by executing two or more instructions simultaneously. l The goals of parallel processing. § One goal is to reduce the “wall-clock” time or the amount of real time that you need to wait for a problem to be solved. § Another goal is to solve bigger problems that might not fit in the limited memory of a single CPU. 3

An Analogy of Parallelism The task of ordering a shuffled deck of cards by

An Analogy of Parallelism The task of ordering a shuffled deck of cards by suit and then by rank can be done faster if the task is carried out by two or more people. By splitting up the decks and performing the instructions simultaneously, then at the end combining the partial solutions you have performed parallel processing. 4

Another Analogy of Parallelism Another analogy is having several students grade quizzes simultaneously. Quizzes

Another Analogy of Parallelism Another analogy is having several students grade quizzes simultaneously. Quizzes are distributed to a few students and different problems are graded by each student at the same time. After they are completed, the graded quizzes are then gathered and the scores are recorded. 5

Parallelism in Uniprocessor Systems l It is possible to achieve parallelism with a uniprocessor

Parallelism in Uniprocessor Systems l It is possible to achieve parallelism with a uniprocessor system. § Some examples are the instruction pipeline, arithmetic pipeline, I/O processor. Note that a system that performs different operations on the same instruction is not considered parallel. l Only if the system processes two different instructions simultaneously can it be considered parallel. l 6

Parallelism in a Uniprocessor System l A reconfigurable arithmetic pipeline is an example of

Parallelism in a Uniprocessor System l A reconfigurable arithmetic pipeline is an example of parallelism in a uniprocessor system. Each stage of a reconfigurable arithmetic pipeline has a multiplexer at its input. The multiplexer may pass input data, or the data output from other stages, to the stage inputs. The control unit of the CPU sets the select signals of the multiplexer to control the flow of data, thus configuring the pipeline. 7

A Reconfigurable Pipeline With Data Flow for the Computation A[i] B[i] * C[i] +

A Reconfigurable Pipeline With Data Flow for the Computation A[i] B[i] * C[i] + D[i] 0 0 0 To 0 1 MUX 2 + LATCH 1 MUX 2 | LATCH memory * LATCH Data Inputs 1 MUX 2 3 3 S 1 S 0 0 x x 0 1 and registers 1 8

Although arithmetic pipelines can perform many iterations of the same operation in parallel, they

Although arithmetic pipelines can perform many iterations of the same operation in parallel, they cannot perform different operations simultaneously. To perform different arithmetic operations in parallel, a CPU may include a vectored arithmetic unit. 9

Vector Arithmetic Unit A vector arithmetic unit contains multiple functional units that perform addition,

Vector Arithmetic Unit A vector arithmetic unit contains multiple functional units that perform addition, subtraction, and other functions. The control unit routes input values to the different functional units to allow the CPU to execute multiple instructions simultaneously. For the operations A B+C and D E-F, the CPU would route B and C to an adder and then route E and F to a subtractor for simultaneous execution. 10

A Vectored Arithmetic Unit + Data Inputs Data Input Connections - Data Input Connections

A Vectored Arithmetic Unit + Data Inputs Data Input Connections - Data Input Connections * % A B+C D E-F 11

Organization of Multiprocessor Systems l Flynn’s Classification § Was proposed by researcher Michael J.

Organization of Multiprocessor Systems l Flynn’s Classification § Was proposed by researcher Michael J. Flynn in 1966. § It is the most commonly accepted taxonomy of computer organization. § In this classification, computers are classified by whether it processes a single instruction at a time or multiple instructions simultaneously, and whether it operates on one or multiple data sets. 12

Taxonomy of Computer Architectures Simple Diagrammatic Representation 4 categories of Flynn’s classification of multiprocessor

Taxonomy of Computer Architectures Simple Diagrammatic Representation 4 categories of Flynn’s classification of multiprocessor systems by their instruction and data streams 13

Single Instruction, Single Data (SISD) SISD machines executes a single instruction on individual data

Single Instruction, Single Data (SISD) SISD machines executes a single instruction on individual data values using a single processor. l Based on traditional Von Neumann uniprocessor architecture, instructions are executed sequentially or serially, one step after the next. l Until most recently, most computers are of SISD type. l 14

SISD Simple Diagrammatic Representation 15

SISD Simple Diagrammatic Representation 15

Single Instruction, Multiple Data (SIMD) An SIMD machine executes a single instruction on multiple

Single Instruction, Multiple Data (SIMD) An SIMD machine executes a single instruction on multiple data values simultaneously using many processors. l Since there is only one instruction, each processor does not have to fetch and decode each instruction. Instead, a single control unit does the fetch and decoding for all processors. l SIMD architectures include array processors. l 16

SIMD Simple Diagrammatic Representation 17

SIMD Simple Diagrammatic Representation 17

Multiple Instruction, Multiple Data (MIMD) MIMD machines are usually referred to as multiprocessors or

Multiple Instruction, Multiple Data (MIMD) MIMD machines are usually referred to as multiprocessors or multicomputers. l It may execute multiple instructions simultaneously, contrary to SIMD machines. l Each processor must include its own control unit that will assign to the processors parts of a task or a separate task. l It has two subclasses: Shared memory and distributed memory l 18

MIMD Simple Diagrammatic Representation (Shared Memory) Simple Diagrammatic Representation(Distributed. Memory) 19

MIMD Simple Diagrammatic Representation (Shared Memory) Simple Diagrammatic Representation(Distributed. Memory) 19

Multiple Instruction, Single Data (MISD) l This category does not actually exist. This category

Multiple Instruction, Single Data (MISD) l This category does not actually exist. This category was included in the taxonomy for the sake of completeness. 20

Analogy of Flynn’s Classifications l An analogy of Flynn’s classification is the check-in desk

Analogy of Flynn’s Classifications l An analogy of Flynn’s classification is the check-in desk at an airport § SISD: a single desk § SIMD: many desks and a supervisor with a megaphone giving instructions that every desk obeys § MIMD: many desks working at their own pace, synchronized through a central database 21

System Topologies § A system may also be classified by its topology. § A

System Topologies § A system may also be classified by its topology. § A topology is the pattern of connections between processors. § The cost-performance tradeoff determines which topologies to use for a multiprocessor system. 22

Topology Classification l A topology is characterized by its diameter, total bandwidth, and bisection

Topology Classification l A topology is characterized by its diameter, total bandwidth, and bisection bandwidth – Diameter – the maximum distance between two processors in the computer system. – Total bandwidth – the capacity of a communications link multiplied by the number of such links in the system. – Bisection bandwidth – represents the maximum data transfer that could occur at the bottleneck in the topology. 23

System Topologies l Shared Bus Topology – Processors communicate with each other via a

System Topologies l Shared Bus Topology – Processors communicate with each other via a single bus that can only handle one data transmissions at a time. – In most shared buses, processors directly communicate with their own local memory. M M M P P P Shared Bus Global memory 24

System Topologies l Ring P Topology – Uses direct connections between processors instead of

System Topologies l Ring P Topology – Uses direct connections between processors instead of a shared bus. – Allows communication links to be active simultaneously but data may have to travel through several processors to reach its destination. P P P 25

System Topologies l Tree Topology P – Uses direct connections between processors; each having

System Topologies l Tree Topology P – Uses direct connections between processors; each having three connections. – There is only one unique path between any pair of processors. P P P 26

Systems Topologies l Mesh Topology – In the mesh topology, every processor connects to

Systems Topologies l Mesh Topology – In the mesh topology, every processor connects to the processors above and below it, and to its right and left. P P P P P 27

System Topologies l Hypercube Topology – Is a multiple mesh topology. – Each processor

System Topologies l Hypercube Topology – Is a multiple mesh topology. – Each processor connects to all other processors whose binary values differ by one bit. For example, processor 0(0000) connects to 1(0001) or 2(0010). P P P P 28

System Topologies l Completely P Connected Topology § Every processor has n-1 connections, one

System Topologies l Completely P Connected Topology § Every processor has n-1 connections, one to each of the other processors. § There is an increase in complexity as the system grows but this offers maximum communication capabilities. P P P P 29

MIMD System Architectures l Finally, the architecture of a MIMD system, contrast to its

MIMD System Architectures l Finally, the architecture of a MIMD system, contrast to its topology, refers to its connections to its system memory. l A systems may also be classified by their architectures. Two of these are: § Uniform memory access (UMA) § Nonuniform memory access (NUMA) 30

Uniform memory access (UMA) l The UMA is a type of symmetric multiprocessor, or

Uniform memory access (UMA) l The UMA is a type of symmetric multiprocessor, or SMP, that has two or more processors that perform symmetric functions. UMA gives all CPUs equal (uniform) access to all memory locations in shared memory. They interact with shared memory by some communications mechanism like a simple bus or a complex multistage interconnection network. 31

Uniform memory access (UMA) Architecture Processor 1 Processor 2 Communications mechanism Shared Memory Processor

Uniform memory access (UMA) Architecture Processor 1 Processor 2 Communications mechanism Shared Memory Processor n 32

Nonuniform memory access (NUMA) l NUMA architectures, unlike UMA architectures do not allow uniform

Nonuniform memory access (NUMA) l NUMA architectures, unlike UMA architectures do not allow uniform access to all shared memory locations. This architecture still allows all processors to access all shared memory locations but in a nonuniform way, each processor can access its local shared memory more quickly than the other memory modules not next to it. 33

Nonuniform memory access (NUMA) Architecture Processor 1 Processor 2 Processor n Memory 1 Memory

Nonuniform memory access (NUMA) Architecture Processor 1 Processor 2 Processor n Memory 1 Memory 2 Memory n Communications mechanism 34

THE END 35

THE END 35