Presentation is loading. Please wait.

Presentation is loading. Please wait.

CS 147 – Parallel Processing

Similar presentations


Presentation on theme: "CS 147 – Parallel Processing"— Presentation transcript:

1 CS 147 – Parallel Processing
Sophia Soohoo CS 147 – Parallel Processing

2 Multiprocessing The use of 2 or more central processing units in a single computer system The CPUS share the other components of a computer Memory Disk System bus

3 Types of multiprocessing - Symmetric
More than one computer processor will share memory capacity and data path protocol Only one copy or the operating system will be used to initiate all the orders executed by the processors involved in the connection Each CPU can act independently All CPUs can be equal, or some processors can be reserved for particular uses Drawback: bottleneck caused by bandwidth of the memory bus connecting the various processors, the memory, and the disk arrays

4 Types of multiprocessing - Symmetric

5 Multiprocessing classification – michael j. flynn
Professor at Stanford University Received his PhD from Purdue University Worked for 10 years in computer organization and design. Proposed Flynn’s taxonomy in 1966

6 Flynn’s taxonomy – classification of computer architectures
Flynn’s taxonomy distinguishes multi-processor computer architecture according to how they can be classified along the 2 independent dimensions of instruction and data. SISD – single instruction single data MISD – multiple instruction single data SIMD – single instruction multiple data MIMD – multiple instruction multiple data Single Instruction Multiple Instruction Single data SISD MISD Multiple data SIMD MIMD

7 SISD – Single instruction Single Data
A serial (non parallel) computer Single instruction – only one instruction steam is being acted on by any CPU during any one clock cycle Oldest classification Modern day uses: Older mainframes Minicomputers Workstations PCs

8 SIMD – Single instruction multiple data
A type of parallel computer Single instruction – all CPUs execute the same instruction at any given clock cycle Multiple data – each CPU can operate on a different data element Synchronous (lockstep) Since only one instruction is processed at a time, not necessary for each CPU to fetch and decode the instruction Types: Processor arrays and vector pipelines Uses: Computers with GPUs

9 MISD – Multiple Instruction Single data
Single data stream is fed into CPUs Each CPU operates on the data independently through independent instruction streams Advantage – redundancy/failsafe; multiple CPUs perform the same tasks on the same data, which reduces the chance of incorrect results if a single CPU fails Disadvantage – expensive Uses: array processors

10 MIMD - Multiple instruction multiple data
Most common type of parallel computing Multiple instruction – every processor may be executing a different instruction stream Multiple data – every CPU can work with a different data stream Execution can be synchronous or asynchronous Examples: super computers, multiprocessor SMP

11 Mapping Data and instruction set to memory
Model is divided into 3 main types of memory architectures: Shared Memory Distributed Memory Distributed Shared Memory

12 Parallel Computer Memory Architecture – Shared memory
Ability for all processors to access all memory as global address space Multiple CPUs can operate independently but share same memory resources Changes in memory location affected by a CPU are visible to all other CPUs Divided into 2 main classes: UMA NUMA

13 Mimd Styles – uniform memory access (UMA)
All CPUs share the physical memory uniformly Access time is independent of which CPU makes the request or which memory chip contains the transferred data Each CPU has a private cache Identical processors Cache coherent – if one processor updates a location in shared memory, all other process know about the update.

14 Uniform Memory Access In the UMA memory architecture, all processors access shared memory through a bus (or another type of interconnect)

15 Mimd Styles – non-uniform memory access (nUMA)
Used in multiprocessors Provide separate memory for each CPU, avoiding performance hit when several CPUs attempt to address the same memory Provides a performance benefit over single shared memory by a factor roughly the number of processors Memory access time depends on the memory location relative to the processor Processor can access its own local memory faster that non-local memory

16 NUMA – Non-Uniform Memory Access
Advantages Global address space provides a user friendly programming to memory Data sharing between tasks is fast and uniform due to proximity of memory to CPUs Disadvantages Lack of scalability between memory and CPUs. Adding more CPUs increases the traffic on shared memory CPU path Programmer responsibility for synchronization constructs that insure “correct” access to global memory Expensive to design and produce shared memory machines

17 NUMA - Non-Uniform Memory Access
Memory access time varies with the location of the data to be accessed. If data resides in local memory, access is fast. If data resides in remote memory, access is slower. The advantage of the NUMA architecture as a hierarchical shared memory scheme is its potential to improve average case access time through the introduction of fast, local memory.

18 Distributed Memory Require a communication network to connect inter-processor memory CPUs have their own distributed memory Memory in one CPU does not map to another – each processor sees only its own memory No concept of global address space When processor needs to access data in another CPU, the programmer must define how and when data is communicated

19 Hybrid distributed-shared Memory
Shared memory component is usually cache coherent SMP machine Combination of both shared and distributed memory Distributed memory component is the networking of multiple SMPs Required to move data from one SMP to another

20 References http://www.networkworld.com/details/550.html?def


Download ppt "CS 147 – Parallel Processing"

Similar presentations


Ads by Google