Download presentation
Presentation is loading. Please wait.
Published byJob Blankenship Modified over 9 years ago
1
High Performance Computing An overview Alan Edelman Massachusetts Institute of Technology Applied Mathematics & Computer Science and AI Labs (Interactive Supercomputing, Chief Science Officer)
2
Not said: many powerful computer owners prefer low profiles
3
Some historical machines
4
Earth Simulator was #1 now #30
5
Moore’s Law The number of people who point out that “Moore’s Law” is dead is doubling every year. Feb 2008: NSF requests $20M for "Science and Engineering Beyond Moore's Law" –Ten years out, Moore’s law itself may be dead Moore’s law has various forms and versions never stated by Moore but roughly doubling every 18 months-2 years –Number of transistors –Computational Power –Parallelism! Still good for a while! At Risk!
6
AMD Opteron quadcore 8350 Sept 2007 Eight core in 2009? 2.0?
7
Intel Clovertown and Dunnington Six Core: Later in 2008?
8
Sun Niagara 2 Crossbar Switch Fully Buffered DRAM 4MB Shared L2 (16 way) 42.7GB/s (read), 21.3 GB/s (write) 8K D$MT UltraSparcFPU 8K D$MT UltraSparcFPU 8K D$MT UltraSparcFPU 8K D$MT UltraSparcFPU 8K D$MT UltraSparcFPU 8K D$MT UltraSparcFPU 8K D$MT UltraSparcFPU 8K D$MT UltraSparcFPU 179 GB/s (fill) 90 GB/s (writethru) 4x128b FBDIMM memory controllers 1.4gHz 16 core in 2008?
9
Accelerators NVIDIA
10
Sicortex Teraflops from Milliwatts
11
Software Give me software leverage and a supercomputer, and I shall solve the world’s problems (apologies to) Archimedes
12
What’s wrong with this story? I can’t get my five year old son off my (serial) computer I have access to the world’s fastest machines and have nothing cool to show him!
13
Engineers and Scientists (The leading indicators) Mostly work in serial (still!) (Just like my 5 year old) Those working in parallel Go to conferences, show off speedups Software: MPI –(Message Passing Interface) –Really thought of as the only choice –Some say the assembler of parallel computing –Some say has allowed code to be portable –Others say has held back progress and performance
14
Old Homework (emphasized for effect) Download a parallel program from somewhere. –Make it work Download another parallel program –Now, …, make them work together!
15
Apples and Oranges A: row distributed array (or worse) B: column distributed array(or worse) C=A+B
16
MPI Performance vs PThreads Professional Performance Study by Sam Williams MPI(autotuned)Pthreads(autotuned)Naïve Single Thread Intel ClovertownAMD Opteron MPI may introduce speed bumps on current architectures
17
MPI Based Libraries Typical sentence: … we enjoy using parallel computing libraries such as Scalapack What else? … you know, such as scalapack And …? Well, there is scalapack (petsc, superlu, mumps, trilinos, …) Very few users, still many bugs, immature Highly Optimized Libraries? Yes and No
18
Natural Question may not be the most important How do I parallelize x? –First question many students ask –Answer often either one of Fairly obvious Very difficult –Can miss the true issues of high performance These days people are often good at exploiting locality for performance People are not very good about hiding communication and anticipating data movement to avoid bottlenecks People are not very good about interweaving multiple functions to make the best use of resources –Usually misses the issue of interoperability Will my program play nicely with your program? Will my program really run on your machine?
19
Real Computations have Dependencies (example FFT) Time wasted on the telephone
20
Modern Approaches Allow users to “wrap up” computations into nice packages often denoted threads Express dependencies among threads Threads need not be bound to a processor Not really new at all: see Arvind Dataflow etc Industry not yet caught up with the damage SPMD and MPI has done See Transactional Memories, Streaming Languages etc. Advantages Easier on Programmer More productivity Allows for autotuning Can Overlap Communication with Computation
21
LU Example
22
Software Give me software leverage and a supercomputer, and I shall solve the world’s problems (apologies to) Archimedes
23
New Standards for Quality of Computation Associative Law: (a+b)+c=a+(b+c) Not true in roundoff Mostly didn’t matter in serial Parallel computation reorganizes computation Lawyers get very upset!
Similar presentations
© 2025 SlidePlayer.com. Inc.
All rights reserved.