Why Parallel Architecture? Todd C. Mowry CS 495 January 15, 2002.

Slides:



Advertisements
Similar presentations
Multiprocessors— Large vs. Small Scale Multiprocessors— Large vs. Small Scale.
Advertisements

Lecture 6: Multicore Systems
Microprocessor Microarchitecture Multithreading Lynn Choi School of Electrical Engineering.
COE 502 / CSE 661 Parallel and Vector Architectures Prof. Muhamed Mudawar Computer Engineering Department King Fahd University of Petroleum and Minerals.
March 18, 2008SSE Meeting 1 Mary Hall Dept. of Computer Science and Information Sciences Institute Multicore Chips and Parallel Programming.
ECE669 L15: Mid-term Review March 25, 2004 ECE 669 Parallel Computer Architecture Lecture 15 Mid-term Review.
ECE669 L1: Course Introduction January 29, 2004 ECE 669 Parallel Computer Architecture Lecture 1 Course Introduction Prof. Russell Tessier Department of.
1 COMP 206: Computer Architecture and Implementation Montek Singh Mon, Dec 5, 2005 Topic: Intro to Multiprocessors and Thread-Level Parallelism.
Chapter Chapter Goals Describe the layers of a computer system Describe the concept of abstraction and its relationship to computing Describe.
Introduction What is Parallel Algorithms? Why Parallel Algorithms? Evolution and Convergence of Parallel Algorithms Fundamental Design Issues.
Chapter 17 Parallel Processing.
Parallel Architecture Fundamentals Todd C. Mowry CS 740 October 12, 2001 Topics What is Parallel Architecture? Why Parallel Architecture? Evolution and.
CIS 629 Parallel Arch. Intro Parallel Computer Architecture Slides blended from those of David Patterson, CS 252 and David Culler, CS 258 UC Berkeley.
Seqeuential Logic State Machines Memory
Parallel Processing Architectures Laxmi Narayan Bhuyan
CMSC 611: Advanced Computer Architecture Parallel Computation Most slides adapted from David Patterson. Some from Mohomed Younis.
0 Introduction to parallel processing Chapter 1 from Culler & Singh Winter 2007.
1 Copyright © 2012, Elsevier Inc. All rights reserved. Chapter 1 Fundamentals of Quantitative Design and Analysis Computer Architecture A Quantitative.
Computer performance.
Lecture 2: Technology Trends and Performance Evaluation Performance definition, benchmark, summarizing performance, Amdahl’s law, and CPI.
Simultaneous Multithreading: Maximizing On-Chip Parallelism Presented By: Daron Shrode Shey Liggett.
1 The Performance Potential for Single Application Heterogeneous Systems Henry Wong* and Tor M. Aamodt § *University of Toronto § University of British.
Parallel Computing Laxmikant Kale
Multi-core architectures. Single-core computer Single-core CPU chip.
Chapter 1 The Big Picture.
Multi-Core Architectures
ECE 568: Modern Comp. Architectures and Intro to Parallel Processing Fall 2006 Ahmed Louri ECE Department.
Sogang University Advanced Computing System Chap 1. Computer Architecture Hyuk-Jun Lee, PhD Dept. of Computer Science and Engineering Sogang University.
CS 320 Spring 2003 Introduction Laxmikant Kale
[Tim Shattuck, 2006][1] Performance / Watt: The New Server Focus Improving Performance / Watt For Modern Processors Tim Shattuck April 19, 2006 From the.
SJSU SPRING 2011 PARALLEL COMPUTING Parallel Computing CS 147: Computer Architecture Instructor: Professor Sin-Min Lee Spring 2011 By: Alice Cotti.
Problem is to compute: f(latitude, longitude, elevation, time)  temperature, pressure, humidity, wind velocity Approach: –Discretize the.
3/15/2002CSE Final Remarks Concluding Remarks SOAP.
1 Today About the class Introductions Any new people? Start of first module: Parallel Computing.
ECE 569: High-Performance Computing: Architectures, Algorithms and Technologies Spring 2006 Ahmed Louri ECE Department.
Parallel Processing & Distributed Systems Thoai Nam And Vu Le Hung.
Performance Analysis of the Compaq ES40--An Overview Paper evaluates Compaq’s ES40 system, based on the Alpha Only concern is performance: no power.
Ted Pedersen – CS 3011 – Chapter 10 1 A brief history of computer architectures CISC – complex instruction set computing –Intel x86, VAX –Evolved from.
Parallel Architecture Fundamentals Todd C. Mowry CS 740 November 3, 1998 Topics What is Parallel Architecture? Why Parallel Architecture? Evolution and.
Hyper-Threading Technology Architecture and Microarchitecture
ECEG-3202 Computer Architecture and Organization Chapter 7 Reduced Instruction Set Computers.
INEL6067 Technology ---> Limitations & Opportunities Wires -Area -Propagation speed Clock Power VLSI -I/O pin limitations -Chip area -Chip crossing delay.
CS433 Spring 2001 Introduction Laxmikant Kale. 2 Course objectives and outline You will learn about: –Parallel programming models Emphasis on 3: message.
Von Neumann Computers Article Authors: Rudolf Eigenman & David Lilja
3/12/2013Computer Engg, IIT(BHU)1 PARALLEL COMPUTERS- 2.
3/12/2013Computer Engg, IIT(BHU)1 INTRODUCTION-1.
3/12/2013Computer Engg, IIT(BHU)1 PARALLEL COMPUTERS- 3.
CS 258 Parallel Computer Architecture Lecture 1 Introduction to Parallel Architecture January 23, 2002 Prof John D. Kubiatowicz.
Jan. 5, 2000Systems Architecture II1 Machine Organization (CS 570) Lecture 1: Overview of High Performance Processors * Jeremy R. Johnson Wed. Sept. 27,
CDA-5155 Computer Architecture Principles Fall 2000 Multiprocessor Architectures.
Background Computer System Architectures Computer System Software.
High Performance Computing1 High Performance Computing (CS 680) Lecture 2a: Overview of High Performance Processors * Jeremy R. Johnson *This lecture was.
CS203 – Advanced Computer Architecture Performance Evaluation.
CC410: System Programming Dr. Manal Helal – Fall 2014 – Lecture 3.
VU-Advanced Computer Architecture Lecture 1-Introduction 1 Advanced Computer Architecture CS 704 Advanced Computer Architecture Lecture 1.
Multi Processing prepared and instructed by Shmuel Wimer Eng. Faculty, Bar-Ilan University June 2016Multi Processing1.
Lecture 13 Parallel Processing. 2 What is Parallel Computing? Traditionally software has been written for serial computation. Parallel computing is the.
Feeding Parallel Machines – Any Silver Bullets? Novica Nosović ETF Sarajevo 8th Workshop “Software Engineering Education and Reverse Engineering” Durres,
CS203 – Advanced Computer Architecture
Auburn University COMP8330/7330/7336 Advanced Parallel and Distributed Computing Parallel Hardware Dr. Xiao Qin Auburn.
Introduction.
CMSC 611: Advanced Computer Architecture
Parallel Computers Definition: “A parallel computer is a collection of processing elements that cooperate and communicate to solve large problems fast.”
Introduction and History of Cray Supercomputers
Performance of computer systems
Course Description: Parallel Computer Architecture
Parallel Processing Architectures
CS 258 Parallel Computer Architecture
Performance of computer systems
Performance of computer systems
Presentation transcript:

Why Parallel Architecture? Todd C. Mowry CS 495 January 15, 2002

CS 495 S’02– 2 – What is Parallel Architecture? A parallel computer is a collection of processing elements that cooperate to solve large problems fast Some broad issues: Resource Allocation: –how large a collection? –how powerful are the elements? –how much memory? Data access, Communication and Synchronization –how do the elements cooperate and communicate? –how are data transmitted between processors? –what are the abstractions and primitives for cooperation? Performance and Scalability –how does it all translate into performance? –how does it scale?

CS 495 S’02– 3 – Why Study Parallel Architecture? Role of a computer architect: To design and engineer the various levels of a computer system to maximize performance and programmability within limits of technology and cost. Parallelism: Provides alternative to faster clock for performance Applies at all levels of system design Is a fascinating perspective from which to view architecture Is increasingly central in information processing

CS 495 S’02– 4 – Why Study it Today? History: diverse and innovative organizational structures, often tied to novel programming models Rapidly maturing under strong technological constraints The “killer micro” is ubiquitous Laptops and supercomputers are fundamentally similar! Technological trends cause diverse approaches to converge Technological trends make parallel computing inevitable In the mainstream Need to understand fundamental principles and design tradeoffs, not just taxonomies Naming, Ordering, Replication, Communication performance

CS 495 S’02– 5 – Inevitability of Parallel Computing Application demands: Our insatiable need for cycles Scientific computing: CFD, Biology, Chemistry, Physics,... General-purpose computing: Video, Graphics, CAD, Databases, TP... Technology Trends Number of transistors on chip growing rapidly Clock rates expected to go up only slowly Architecture Trends Instruction-level parallelism valuable but limited Coarser-level parallelism, as in MPs, the most viable approach Economics Current trends: Today’s microprocessors have multiprocessor support Servers & even PCs becoming MP: Sun, SGI, COMPAQ, Dell,... Tomorrow’s microprocessors are multiprocessors

CS 495 S’02– 6 – Application Trends Demand for cycles fuels advances in hardware, and vice-versa Cycle drives exponential increase in microprocessor performance Drives parallel architecture harder: most demanding applications Range of performance demands Need range of system performance with progressively increasing cost Platform pyramid Goal of applications in using parallel machines: Speedup Speedup (p processors) = For a fixed problem size (input data set), performance = 1/time Speedup fixed problem (p processors) = Performance (p processors) Performance (1 processor) Time (1 processor) Time (p processors)

CS 495 S’02– 7 – Scientific Computing Demand

CS 495 S’02– 8 – Engineering Computing Demand Large parallel machines a mainstay in many industries Petroleum (reservoir analysis) Automotive (crash simulation, drag analysis, combustion efficiency), Aeronautics (airflow analysis, engine efficiency, structural mechanics, electromagnetism), Computer-aided design Pharmaceuticals (molecular modeling) Visualization –in all of the above –entertainment (films like Toy Story) –architecture (walk-throughs and rendering) Financial modeling (yield and derivative analysis) etc.

CS 495 S’02– 9 – Learning Curve for Parallel Programs AMBER molecular dynamics simulation program Starting point was vector code for Cray MFLOP on Cray90, 406 for final version on 128- processor Paragon, 891 on 128-processor Cray T3D

CS 495 S’02– 10 – Commercial Computing Also relies on parallelism for high end Scale not so large, but use much more wide-spread Computational power determines scale of business that can be handled Databases, online-transaction processing, decision support, data mining, data warehousing... TPC benchmarks (TPC-C order entry, TPC-D decision support) Explicit scaling criteria provided Size of enterprise scales with size of system Problem size no longer fixed as p increases, so throughput is used as a performance measure (transactions per minute or tpm)

CS 495 S’02– 11 – TPC-C Results for March 1996 Parallelism is pervasive Small to moderate scale parallelism very important Difficult to obtain snapshot to compare across vendor platforms

CS 495 S’02– 12 – Summary of Application Trends Transition to parallel computing has occurred for scientific and engineering computing In rapid progress in commercial computing Database and transactions as well as financial Usually smaller-scale, but large-scale systems also used Desktop also uses multithreaded programs, which are a lot like parallel programs Demand for improving throughput on sequential workloads Greatest use of small-scale multiprocessors Solid application demand exists and will increase

CS 495 S’02– 13 – Technology Trends Commodity microprocessors have caught up with supercomputers.

CS 495 S’02– 14 – Architectural Trends Architecture translates technology’s gifts to performance and capability Resolves the tradeoff between parallelism and locality Current microprocessor: 1/3 compute, 1/3 cache, 1/3 off-chip connect Tradeoffs may change with scale and technology advances Understanding microprocessor architectural trends Helps build intuition about design issues or parallel machines Shows fundamental role of parallelism even in “sequential” computers Four generations of architectural history: tube, transistor, IC, VLSI Here focus only on VLSI generation Greatest delineation in VLSI has been in type of parallelism exploited

CS 495 S’02– 15 – Arch. Trends: Exploiting Parallelism Greatest trend in VLSI generation is increase in parallelism Up to 1985: bit level parallelism: 4-bit -> 8 bit -> 16-bit –slows after 32 bit –adoption of 64-bit now under way, 128-bit far (not performance issue) –great inflection point when 32-bit micro and cache fit on a chip Mid 80s to mid 90s: instruction level parallelism –pipelining and simple instruction sets, + compiler advances (RISC) –on-chip caches and functional units => superscalar execution –greater sophistication: out of order execution, speculation, prediction »to deal with control transfer and latency problems Next step: thread level parallelism

CS 495 S’02– 16 – Phases in VLSI Generation How good is instruction-level parallelism? Thread-level needed in microprocessors?

CS 495 S’02– 17 – Architectural Trends: ILP Reported speedups for superscalar processors Horst, Harris, and Jardine [1990] Wang and Wu [1988] Smith, Johnson, and Horowitz [1989] Murakami et al. [1989] Chang et al. [1991] Jouppi and Wall [1989] Lee, Kwok, and Briggs [1991] Wall [1991] Melvin and Patt [1991] Butler et al. [1991] Large variance due to difference in –application domain investigated (numerical versus non-numerical) –capabilities of processor modeled

CS 495 S’02– 18 – ILP Ideal Potential Infinite resources and fetch bandwidth, perfect branch prediction and renaming –real caches and non-zero miss latencies

CS 495 S’02– 19 – Results of ILP Studies Concentrate on parallelism for 4-issue machines Realistic studies show only 2-fold speedup Recent studies show that for more parallelism, one must look across threads

CS 495 S’02– 20 – Architectural Trends: Bus-based MPs No. of processors in fully configured commercial shared-memory systems Micro on a chip makes it natural to connect many to shared memory –dominates server and enterprise market, moving down to desktop Faster processors began to saturate bus, then bus technology advanced –today, range of sizes for bus-based systems, desktop to large servers

CS 495 S’02– 21 – Bus Bandwidth

CS 495 S’02– 22 – Economics Commodity microprocessors not only fast but CHEAP Development cost is tens of millions of dollars (5-100 typical) BUT, many more are sold compared to supercomputers Crucial to take advantage of the investment, and use the commodity building block Exotic parallel architectures no more than special-purpose Multiprocessors being pushed by software vendors (e.g. database) as well as hardware vendors Standardization by Intel makes small, bus-based SMPs commodity Desktop: few smaller processors versus one larger one? Multiprocessor on a chip

CS 495 S’02– 23 – Summary: Why Parallel Architecture? Increasingly attractive Economics, technology, architecture, application demand Increasingly central and mainstream Parallelism exploited at many levels Instruction-level parallelism Thread-level parallelism within a microprocessor Multiprocessor servers Large-scale multiprocessors (“MPPs”) Same story from memory system perspective Increase bandwidth, reduce average latency with many local memories Wide range of parallel architectures make sense Different cost, performance and scalability