stream programming environments
play

Stream Programming Environments Pat Hanrahan Computer Science & - PDF document

Stream Programming Environments Pat Hanrahan Computer Science & Electrical Engineering Stanford University GP^2 Workshop August 7-8, 2004 Acknowledgements Bill Dally Ian Buck Eric Darve Mattan Erez Vijay Pande


  1. Stream Programming Environments Pat Hanrahan Computer Science & Electrical Engineering Stanford University GP^2 Workshop August 7-8, 2004 Acknowledgements • Bill Dally • Ian Buck • Eric Darve • Mattan Erez • Vijay Pande • Kayvon Fatahalian • Bill Mark • Tim Foley • John Owens • Daniel Horn • Kurt Akeley • Michael Houston • Mark Horowitz • Jeremy Sugarman Funding: DARPA, DOE, ATI, IBM, NVIDIA, SONY 1

  2. Motivation • Cinematic games and media drive GPU market • Current GPU faster than CPU (at graphics) • Gap between the GPU and the CPU increasing • Why? Data parallelism; efficient communication • Programmable GPUs ≈ Stream processors • Many applications map to stream processing • Therefore, a $50 high-performance parallel- computer is shipping with every PC • Revolutionize computing Overview • Technology trends • Stream programming abstraction • Brook for GPUs • Applications 2

  3. VLSI for Programmers :-) 3

  4. The Capability Gap 1e+7 1e+6 52%/year Perf (ps/Inst) 1e+5 Delay/CPUs 1e+4 1e+3 19%/year 1e+2 30:1 74%/year 1e+1 1,000:1 1e+0 30,000:1 1e-1 1e-2 1e-3 1e-4 1980 1985 1990 1995 2000 2005 2010 2015 2020 Graph courtesy of Bill Dally Recent Performance Trends Multiplies per second NVIDIA NV30, 35, 40 GFLOPS ATI R300, 360, 420 Pentium 4 July 01 Jan 02 July 02 Jan 03 July 03 Jan 04 4

  5. Programming Environments[1999]? RenderMan Real-Time Shading Language (RTSL) Rendering RenderMan++ Programming Environments[2004]? RenderMan Real-Time Shading Language (RTSL) Simulation Brook (Stream) 5

  6. Stream Abstraction Streams – Old/Hot Idea in CS • <stream.h> • OpenGL/GLS/Chromium • Data visualization systems (vtk, avs, dx) • Signal processing (signal flow graphs) • Functional programming • Streaming data bases • Sensor nets 6

  7. Minimize State! Fragment Processor Texture Input Fragment Data Data Texture Filter Texture Filter Bi / Tri / Aniso Bi / Tri / Aniso Shader Unit 1 1 texture @ full speed Shader Unit 1 FP32 1 texture @ full speed FP Texture 4 FP Ops / pixel 4-tap filter @ full speed Shader 4 FP Ops / pixel 4-tap filter @ full speed Processor Dual/Co-Issue 16:1 Aniso w/ Trilinear (128-tap) Unit 1 Dual/Co-Issue 16:1 Aniso w/ Trilinear (128-tap) Texture Address Calc FP16 Texture Filtering Texture Address Calc FP16 Texture Filtering Free fp16 normalize Free fp16 normalize + mini ALU + mini ALU FP32 Shader Unit 2 L2 Texture L1 Texture Shader Unit 2 Shader Cache Cache 4 FP Ops / pixel Unit 2 4 FP Ops / pixel Dual/Co-Issue Dual/Co-Issue + mini ALU + mini ALU Branch Processor • SIMD Architecture • SIMD Architecture • Dual Issue / Co- • Dual Issue / Co- Fog ALU Issue Issue • FP32 Computation • FP32 Computation Output • Shader Model 3.0 Shaded Fragments • Shader Model 3.0 7

  8. GeForce 6800 Series 3D Pipeline Triangle Setup Z-Cull Shader Instruction Dispatch L2 Tex Fragment Crossbar Memory Memory Memory Memory Partition Partition Partition Partition Stream Programming Abstraction • Streams stream stream – Collection of data records kernel • Kernels stream stream – Inputs/outputs are streams – Perform computation – Can be chained together 8

  9. Why Architects like Streams? • Parallelism – Data parallelism – Pipeline (task) parallelism • Communication – Producer-consumer locality – Predictable memory access pattern – No read-write hazards; simple coherence – Hide latency of random memory accesses – High arithmetic intensity A lot like vector machines … Arithmetic Intensity Arithmetic Intensity = Compute-to-bandwidth ratio Graphics pipeline – Vextex BW: 1 vertex = 32 bytes; OP: 100-500 f32-ops / vertex – Fragment BW: 1 fragment = 10 bytes OP: 300-1000 i8-ops/fragment 9

  10. Measured Arithmetic Intensity Microbenchmarks GFLOPS Cache BW Seq BW NV 5900 Ultra 40.0 11.4 4.1 NV 6800 Ultra 53.4 20.6 8.4 ATI 9800 XT 26.1 12.2 7.3 ATI X800 XT PE * 63.7 28.4 15.6 Bandwidth measured in GB/sec. * ATI X800 XT PE is a prerelease board: 500Mhz core / 500Mhz clock GPUBench: Evaluating GPU performance for numerical and scientific applications, K. Fatahalian, I. Buck, M. Houston, P. Hanrahan, GP^2 2004 CPU vs GPU • Intel 3 Ghz Pentium 4 – 12 GFLOPS peak performance (via SSE2) – 6 GB/sec peak memory bandwidth – 44 GB/sec peak bw from 8K L1 data cache • NVIDIA GeForce 6800 – 45 GFLOPS peak performance – 36 GB/sec peak memory bandwidth – 21 GB/sec peak bw from ?K L1 data cache 10

  11. Approach I Map application to graphics primitives • Graphics library-based programming models – Cg/HLSL – OpenGL Shading Language – Sh [McCool et al. 2004] Approach II Map application to parallel computer • Stream languages – AWK, Ptolemy, … – StreaMIT, StreamC/KernelC, … • Data parallel programming – APL, SETL, S, Fortran90, … – C* (lisp*), NESL, … • Communicating sequential processes (CSP) – Threads: Occam, UPC – Message passing: MPI 11

  12. Stream Programming Environment • Collections stored in memory – Multidimensional arrays (stencils) – Graphs and meshes (topology) • Data parallel operators – Application: map – Reductions: scan, reduce (fold) – Communication: send, sort, gather, scatter – Filter (|O|<|I|) and generate (|O|>|I|) Brook Ian Buck, Ph. D. Thesis, Stanford Brook for GPUs: Stream computing on graphics hardware, I. Buck, T. Foley, D. Horn, J. Sugarman, K. Fatahalian, M. Houston, P. Hanrahan, SIGGRAPH 2004 12

  13. Brook Language kernel void foo ( float a<>, float b<>, out float result<> ) { result = a + b; } float a<100>; float b<100>; float c<100>; for (i=0; i<100; i++) foo(a,b,c); c[i] = a[i]+b[i]; Goals • Develop version of PCA Brook for GPUs – Programmer need not know GL • Versions – New ATI (420) and NVIDIA (NV40) hardware – Linux and Windows – DX and OpenGL • Release as open source [V1.0 Dec 2003] – http://brook.sourceforge.net – http://sourceforge.net/projects/brook – over 6,300 downloads in 8 months 13

  14. Brook Performance First Generation GPUs Floating precisions different � ATI – 24-bit � NV – ~IEEE 32-bit � Intel – IEEE 32-bit compared against: • Intel Math Library • Atlas Math Library • Cached blocked segmentation • FFTW • SSE-opt Ray Triangle code ATI Radeon 9800 XT NVIDIA GeForceFX Brook Performance Second Generation GPUs Floating precisions different � ATI – 24-bit � NV – ~IEEE 32-bit � Intel – IEEE 32-bit compared against: • Intel Math Library • Atlas Math Library • Cached blocked segmentation • FFTW • SSE-opt Ray Triangle code ATI Radeon X800 XT NVIDIA GeForce 6800 14

  15. Dense Matrix-Matrix Multiplication Dense Matrix-Matrix Multiplication Time (s) GFLOPS Compute BW BW (GB/sec) Efficiency Efficiency NV 5900 Ultra 0.713 3.01 7.5% 9.07 79.6% NV 6800 Ultra 0.232 9.25 17.3% 18.78 90.9% ATI 9800 XT 0.445 4.83 18.5% 12.06 98.9% ATI X800 XT* 0.188 11.40 17.9% 27.50 96.8% P4 ATLAS 0.289 7.78 64.8% 27.68 61.9% • Matrix-matrix multiplication is bandwidth limited on GPU. – Memory blocking to increase cache utilization does not help – Architectural problem, not programming model problem * ATI X800 XT PE is a prerelease board: 500Mhz core/500Mhz clock Understanding the Efficiency of GPU Algorithms for Matrix-Matrix Multiplication, K. Fatahalian, J. Sugerman, P. Hanrahan, Graphics Hardware 2004 15

  16. Beyond Graphics and Imaging … Molecular Dynamics Fluid Flow Folding@Home Accelerating molecular dynamics with GPUs, I. Buck, V. Rangasayee, E. Darve, V. Pande, P. Hanrahan GP^2 2004 Applications • Media: audio, images (vision), video, … • Simulation – Monte Carlo • Ray tracing – Ordinary differential equations • N-body problems: molecular dynamics, astrophysics • Particle systems and rigid body dynamics – Partial differential equations • Explicit: elastic deformations • Implicit: cloth, fluid flow • Machine learning and computational statistics? 16

  17. 16 Node GPU Cluster • Compute – 32 2.4GHz P4 Xeons – 16GB DDR – 1.2TB disk – Intel E7505 chipset • Network – Infiniband 4X interconnect – GigE • Graphics – ATI Radeon 9800 Pro 256MB Parallel computation on a cluster of GPUs, M. Houston, K. Fatahalian, J. Sugarman, I. Buck, P. Hanrahan GP^2 2004 B a c k p l a n e 16 x Board DRDRAM 2GBytes Node 16GBytes/s Node Node Board 2 2 16 16 Nodes Stream Backplane Board 32 1K FPUs Processor 2 2TFLOPS 128 FPUs 32 Boards Backplane 32GBytes 128GFLOPS 512 Nodes 32 64K FPUs 16GBytes/s 64TFLOPS 32+32 pairs 1TByte On-Board Network 64GBytes/s 128+128 pairs 6" Teradyne GbX E/O Intra-Cabinet Network O/E 1TBytes/s 2K+2K links Ribbon Fiber All links 5Gb/s per Inter-Cabinet Network pair or fiber All bandwidths are full duplex Bisection 32TBytes/s Merrimac: Supercomputing with streams, M. Erez, J. Ahn, N. Jayasena, T. Knight, A. Das, F. Labonte, J. Gummaraju, W. Dally, P. Hanrahan, M. Rosenblum, GP^2 2004 17

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend