Programmer's View of Execution Teminology Summary

Similar documents
CS 61C: Great Ideas in Computer Architecture (Machine Structures) Lecture 30: GP-GPU Programming. Lecturer: Alan Christopher

CS 152 Computer Architecture and Engineering. Lecture 16: Graphics Processing Units (GPUs)

CS 152 Computer Architecture and Engineering. Lecture 16: Graphics Processing Units (GPUs)

Vector Processors and Graphics Processing Units (GPUs)

CS 152 Computer Architecture and Engineering. Lecture 16: Graphics Processing Units (GPUs) John Wawrzynek. EECS, University of California at Berkeley

GPUs have enormous power that is enormously difficult to use

Parallel Processing SIMD, Vector and GPU s cont.

CUDA Performance Optimization

Parallel Programming Principle and Practice. Lecture 9 Introduction to GPGPUs and CUDA Programming Model

GPU Fundamentals Jeff Larkin November 14, 2016

CUDA and GPU Performance Tuning Fundamentals: A hands-on introduction. Francesco Rossi University of Bologna and INFN

NVIDIA GTX200: TeraFLOPS Visual Computing. August 26, 2008 John Tynefield

Portland State University ECE 588/688. Graphics Processors

Motivation: Who Cares About I/O? Historical Perspective. Hard Disk Drives. CS252 Graduate Computer Architecture Lecture 25

Computer Architecture

Warps and Reduction Algorithms

Lecture: Storage, GPUs. Topics: disks, RAID, reliability, GPUs (Appendix D, Ch 4)

CSCI 402: Computer Architectures. Parallel Processors (2) Fengguang Song Department of Computer & Information Science IUPUI.

Administrivia. HW0 scores, HW1 peer-review assignments out. If you re having Cython trouble with HW2, let us know.

Master Informatics Eng.

CUDA PROGRAMMING MODEL Chaithanya Gadiyam Swapnil S Jadhav

Fundamental CUDA Optimization. NVIDIA Corporation

CS516 Programming Languages and Compilers II

Introduction to CUDA Algoritmi e Calcolo Parallelo. Daniele Loiacono

ME964 High Performance Computing for Engineering Applications

Parallel Computing: Parallel Architectures Jin, Hai

Lecture 2: CUDA Programming

CS 179 Lecture 4. GPU Compute Architecture

Flynn s Classification (1966)

Scientific Computing on GPUs: GPU Architecture Overview

CSE 591: GPU Programming. Using CUDA in Practice. Klaus Mueller. Computer Science Department Stony Brook University

Preparing seismic codes for GPUs and other

Fundamental CUDA Optimization. NVIDIA Corporation

Lecture 27: Multiprocessors. Today s topics: Shared memory vs message-passing Simultaneous multi-threading (SMT) GPUs

DATA-LEVEL PARALLELISM IN VECTOR, SIMD ANDGPU ARCHITECTURES(PART 2)

Fundamental Optimizations in CUDA Peng Wang, Developer Technology, NVIDIA

CUDA Optimizations WS Intelligent Robotics Seminar. Universität Hamburg WS Intelligent Robotics Seminar Praveen Kulkarni

Tesla Architecture, CUDA and Optimization Strategies

Optimizing Parallel Reduction in CUDA. Mark Harris NVIDIA Developer Technology

GPGPU COMPUTE ON AMD. Udeepta Bordoloi April 6, 2011

Numerical Simulation on the GPU

CUDA Performance Optimization. Patrick Legresley

Occupancy-based compilation

Advanced CUDA Optimizations

CUDA Programming Model

Optimizing Parallel Reduction in CUDA

Introduction to CUDA Algoritmi e Calcolo Parallelo. Daniele Loiacono

Design of Digital Circuits Lecture 21: GPUs. Prof. Onur Mutlu ETH Zurich Spring May 2017

CUDA OPTIMIZATIONS ISC 2011 Tutorial

GPU Architecture. Alan Gray EPCC The University of Edinburgh

Introduction to CUDA Programming

Lecture 27: Pot-Pourri. Today s topics: Shared memory vs message-passing Simultaneous multi-threading (SMT) GPUs Disks and reliability

Parallel Numerical Algorithms

Optimizing Parallel Reduction in CUDA. Mark Harris NVIDIA Developer Technology

CS 152, Spring 2011 Section 10

Introduction to GPU programming with CUDA

GPGPUs in HPC. VILLE TIMONEN Åbo Akademi University CSC


ECE 574 Cluster Computing Lecture 15

L17: CUDA, cont. 11/3/10. Final Project Purpose: October 28, Next Wednesday, November 3. Example Projects

GPUs and GPGPUs. Greg Blanton John T. Lubia

Chapter 04. Authors: John Hennessy & David Patterson. Copyright 2011, Elsevier Inc. All rights Reserved. 1

Accelerator cards are typically PCIx cards that supplement a host processor, which they require to operate Today, the most common accelerators include

Handout 3. HSAIL and A SIMT GPU Simulator

ECE 574 Cluster Computing Lecture 17

GPUs and Emerging Architectures

GPU 101. Mike Bailey. Oregon State University. Oregon State University. Computer Graphics gpu101.pptx. mjb April 23, 2017

GPU 101. Mike Bailey. Oregon State University

GPU for HPC. October 2010

From Shader Code to a Teraflop: How GPU Shader Cores Work. Jonathan Ragan- Kelley (Slides by Kayvon Fatahalian)

Multi-Processors and GPU

! Readings! ! Room-level, on-chip! vs.!

From Application to Technology OpenCL Application Processors Chung-Ho Chen

CS 179: GPU Computing LECTURE 4: GPU MEMORY SYSTEMS

Introduction to GPU hardware and to CUDA

COMP 605: Introduction to Parallel Computing Lecture : GPU Architecture

HPC trends (Myths about) accelerator cards & more. June 24, Martin Schreiber,

GPU Architecture. Robert Strzodka (MPII), Dominik Göddeke G. TUDo), Dominik Behr (AMD)

Computer Architecture 计算机体系结构. Lecture 10. Data-Level Parallelism and GPGPU 第十讲 数据级并行化与 GPGPU. Chao Li, PhD. 李超博士

WHY PARALLEL PROCESSING? (CE-401)

COMP 322: Fundamentals of Parallel Programming. Flynn s Taxonomy for Parallel Computers

Antonio R. Miele Marco D. Santambrogio

Parallel Systems Course: Chapter IV. GPU Programming. Jan Lemeire Dept. ETRO November 6th 2008

Real-Time Rendering Architectures

CE 431 Parallel Computer Architecture Spring Graphics Processor Units (GPU) Architecture

45-year CPU Evolution: 1 Law -2 Equations

Lecture 1: Introduction and Basics

Exotic Methods in Parallel Computing [GPU Computing]

CS 179: GPU Computing

CUDA OPTIMIZATION WITH NVIDIA NSIGHT VISUAL STUDIO EDITION

From Shader Code to a Teraflop: How Shader Cores Work

Lecture 7: The Programmable GPU Core. Kayvon Fatahalian CMU : Graphics and Imaging Architectures (Fall 2011)

Introduction to Multicore architecture. Tao Zhang Oct. 21, 2010

Programming in CUDA. Malik M Khan

Lecture 5. Performance programming for stencil methods Vectorization Computing with GPUs

Introduction to GPGPU and GPU-architectures

Kernel optimizations Launch configuration Global memory throughput Shared memory access Instruction throughput / control flow

Fundamental Optimizations

Lecture 13: Memory Consistency. + a Course-So-Far Review. Parallel Computer Architecture and Programming CMU , Spring 2013

Supercomputing, Tutorial S03 New Orleans, Nov 14, 2010

Transcription:

CS 61C: Great Ideas in Computer Architecture (Machine Structures) Lecture 28: GP-GPU Programming GPUs Hardware specialized for graphics calculations Originally developed to facilitate the use of CAD programs Graphics calculations are extremely data parallel e.g. translate every vertex in a 3D model to the right Lecturer: Alan Christopher Programmers found that that could rephrase some of their problems as graphics manipulations and run them on the GPU Incredibly burdensome for the programmer to use More usable these days opencl, CUDA Overview CPU vs. GPU Latency optimized Throughput optimized GP-GPU: What and why A couple threads of execution Many, many threads of execution OpenCL, CUDA, and programming GPUs GPU Performance demo Each thread executes quickly Serial code Lots of caching Each thread executes slowly Parallel code Lots of memory bandwidth A Quick Review: Classes of Parallelism OpenCL and CUDA ILP: TLP: DLP: GPUs are here Run multiple instructions from one stream in parallel (e.g. pipelining) Run multiple instruction streams simultaneously (e.g. openmp) Run the same operation on multiple data at the same time (e.g. SSE intrinsics) Extensions to C which allow for relatively easy GPU programming CUDA is NVIDIA proprietary NVIDIA cards only OpenCL is opensource Can be used with NVIDA or ATI cards Intended for general heterogeneous computing Means you can use it with stuff like FPGAs Also means it's relatively clunky Similar tools, but different jargon

Kernels Kernels define the computation for one array index The GPU runs the kernel on each index of a specified range Similar functionality to map, but you get to know the array index and the array value. Call the work at a given index a work-item, a cuda thread, or a µthread. The entire range is called an index-space or grid. Hardware Execution Model Core 1 GPU GPU is built from multiple parallel cores, each core contains a multithreaded SIMD processor. CPU sends whole index-space over to GPU, which distributes work-groups among cores (each work-group executes on one core) CPU CPU Memory Core 0 Programmer unaware of number of cores GPU Memory Core 15 Notice that the GPU and CPU have different memory spaces. That'll be important when we start considering which jobs are a good fit for GPUs, and which jobs are a poor fit. OpenCL vvadd /* opencl Kernel. */ kernel void vvadd( global float *dst, global float *a, unsigned tid = get_global_id(0); if (tid < n) dst[tid] = a[tid] + b[tid]; Single Instruction, Multiple Thread GPUs use a SIMT model, where individual scalar instruction streams for each work item are grouped together for SIMD execution on hardware (Nvidia groups 32 CUDA threads into a warp. OpenCL refers to them as wavefronts.) Scalar instruction stream ld x mul a ld y add st y µt0 µt1 µt2 µt3 µt4 µt5 µt6 µt7 SIMD execution across wavefront Programmer's View of Execution Teminology Summary Create enough work groups to cover input vector (opencl calls this ensemble of work groups an index space, can be 3-dimensional in opencl, 2 dimensional in CUDA) threadid 0 threadid 1 threadid 255 threadid 256 threadid 257 threadid 511 threadid m threadid m+1 threadid n+e Local work size (programmer can choose) Conditional (i<n) turns off unused threads in last block Kernel: The function that is mapped across the input. Work-item: The basic unit of execution. Takes care of one index. Also called a microthread or cuda thread. Work-group/Block: A group of work-items. Each work-group is sent to one core in the GPU. Index-space/Grid: The range of indices over which the kernel is applied. Wavefront/Warp: A group of microthreads (work-items) scheduled to be SIMD executed with eachother.

Administrivia Warps (wavefronts) are multithreaded on a single core Homework 4 is due Sunday (April 6th) One warp of 32 µthreads is a single thread in the hardware Multiple warp threads are interleaved in execution on a single core to hide latencies (memory and functional unit) A single thread block can contain multiple warps (up to 512 µt max in CUDA), all mapped to single core Can have multiple blocks executing on one core Fall 2011 -- Lecture #37 [Nvidia, 2010] Scalar instruction stream Conditionals in the SIMT Model Simple if-then-else are compiled into predicated execution, equivalent to vector masking More complex control flow compiled into branches How to execute a vector of branches? tid=threadid If (tid >= n) skip Call func1 add st y skip: µt0 µt1 µt2 µt3 µt4 µt5 µt6 µt7 OpenCL Memory Model Global read and write by all work-items and work-groups Constant read-only by work-items; read and write by host Local used for data sharing; read/write by work-items in the same work group Private only accessible to one work-item SIMD execution across warp Branch Divergence Hardware tracks which µthreads take or don t take branch If all go the same way, then keep going in SIMD fashion If not, create mask vector indicating taken/not-taken Keep executing not-taken path under mask, push taken branch PC+mask onto a hardware stack and execute later When can execution of µthreads in warp reconverge? SIMT Illusion of many independent threads But for efficiency, programmer must try and keep µthreads aligned in a SIMD fashion Try to do unit-stride loads and store so memory coalescing kicks in Avoid branch divergence so most instruction slots execute useful work and are not masked off

VVADD /* opencl Kernel. */ kernel void vvadd( global float *dst, global float *a, unsigned tid = get_global_id(0); if (tid < n) dst[tid] = a[tid] + b[tid]; GP-GPU in the future High-end desktops have separate GPU chip, but trend towards integrating GPU on same die as CPU (already in laptops, tablets and smartphones) Advantage is shared memory with CPU, no need to transfer data Disadvantage is reduced memory bandwidth compared to dedicated smaller-capacity specialized memory system Graphics DRAM (GDDR) versus regular DRAM (DDR3) Will GP-GPU survive? Or will improvements in CPU DLP make GP-GPU redundant? On same die, CPU and GPU should have same memory bandwidth GPU might have more FLOPS as needed for graphics anyway A: CPU faster B: GPU faster VVADD Acknowledgements Only 1 flop per three memory accesses => memory bound calculation. A many core processor A device for turning a compute bound problem into a memory bound problem Kathy Yelick These slides contain materials developed and copryright by Krste Asanovic (UCB) AMD codeproject.com VECTOR_COP void vector_cop(float *dst, float *a, float *b, unsigned n) { { dst[i] = 0; for (int j = 0; j < A_LARGE_NUMBER; j++) dst[i] += a[i]*2*b[i] a[i]*a[i] b[i]*b[i]; /* OpenCL kernel. */ kernel void vector_cop( global float *dst, global float *a, unsigned i = get_global_id(0); if (tid < n) { dst[i] = 0; for (int j = 0; j < A_LARGE_NUMBER; j++) dst[i] += a[i]*2*b[i] a[i]*a[i] b[i]*b[i]; A: CPU faster B: GPU faster And in conclusion GPUs thrive when The calculation is data parallel The calculation is CPU-bound The calculation is large CPUs thrive when The calculation is largely serial The calculation is small The programmer is lazy Fall 2011 -- Lecture #37

Bonus OpenCL source code for vvadd and vector_cop demos available at http://www-inst.eecs.berkeley.edu/~cs61c/sp13/lec/39/demo.tar.gz