1 / 20

CS 147 – Parallel Processing

Sophia Soohoo CS 147 – Parallel Processing 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 Multiprocessing Symmetric

Angelica
Download Presentation

CS 147 – Parallel Processing

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Sophia Soohoo CS 147 – Parallel Processing

  2. 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 Multiprocessing

  3. 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 Types of multiprocessing - Symmetric

  4. Types of multiprocessing - Symmetric

  5. 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 Multiprocessing classification – michael j. flynn

  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

  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. 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 SIMD – Single instruction multiple data

  9. 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 MISD – Multiple Instruction Single data

  10. 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 MIMD - Multiple instruction multiple data

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

  12. 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 Parallel Computer Memory Architecture – Shared memory

  13. Uniform Memory Access • 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. Mimd Styles – uniform memory access (UMA)

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

  15. 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 Mimd Styles – non-uniform memory access (nUMA)

  16. 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 NUMA – Non-Uniform Memory Access

  17. 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. NUMA - Non-Uniform Memory Access

  18. 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 Distributed Memory

  19. 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 Hybrid distributed-shared Memory

  20. http://www.networkworld.com/details/550.html?def • http://arith.stanford.edu/~flynn/ • http://en.wikipedia.org/wiki/Flynn%27s_taxonomy • https://computing.llnl.gov/tutorials/parallel_comp/#Whatis • http://it.toolbox.com/wiki/index.php/NUMA_Architecture • http://www.drdobbs.com/go-parallel/article/showArticle.jhtml?articleID=218401502 • http://www.ece.ucsb.edu/~parhami/text_par_proc.htm • http://www.ats.ucla.edu/rct/classes/introtoparallel_files/v3_document.htm References

More Related