1 / 28

GPUs and GPU Programming Bharadwaj Subramanian, Apollo Ellis, Keshav Pingali

GPUs and GPU Programming Bharadwaj Subramanian, Apollo Ellis, Keshav Pingali. Imagery taken from Nvidia Dawn Demo Slide on GPUs, Cuda and Programming Models by Apollo Ellis Slides on OpenCL by Bharadwaj Subramanian. A GPU is a Multi-core Architecture.

kort
Download Presentation

GPUs and GPU Programming Bharadwaj Subramanian, Apollo Ellis, Keshav Pingali

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. GPUs and GPU ProgrammingBharadwaj Subramanian, Apollo Ellis, KeshavPingali Imagery taken from Nvidia Dawn Demo Slide on GPUs, Cuda and Programming Models by Apollo Ellis Slides on OpenCL by Bharadwaj Subramanian

  2. A GPU is a Multi-core Architecture • High throughput is prioritized over low latency single task execution • Large collection of fixed function and software programmable resources

  3. Graphics Pipeline • Virtual scene Virtual camera used to render • Direct3D and OpenGL formulate the process as a pipeline of operations on fundamental entities • Vertices • Primitives • Fragments • Pixels • Data flows in entity streams between pipeline stages.

  4. Graphics Pipeline

  5. Graphics Pipeline • GPU Front End • Otherwise known as Vertex Generator • Takes in vertex descriptors: Location plus Type (Line, Triangle, Quad, Poly) • Attributes (Normal, Texture Coordinate, Color etc.) • Performs a prefetch on the vertex data and constructs a vertex stream.

  6. Graphics Pipeline • Vertex Processing • Programmable Vertex Shader Execute • Typically converts from world space to camera space • Languages include Cg and HLSL • Primitive Assembly • Convert form vertices to primitives • Rasterization • Primitive Sampler in Screen space • Fragment Generator

  7. Graphics Pipeline • Fragment Processing • Programmable Fragment Shader Execute • Texture Lookup and Light Interaction Calculation • Cg and HLSL • ROP • Raster Operations (Depth Buffer Cull, Alpha Blend) • Calculate each fragment’s contribution to given pixels

  8. Shader Programming • Fragment or Vertex processing is defined by shader programs written in Cg or GLSL or HLSL • Compiled at runtime to binary • Or compiled offline and then transformed at runtime • C-like function that processes a single input and output in isolation • Run in parallel on multiple shader cores • Wide SIMD instructions due to instruction streaming

  9. Parallel Processing and Encapsulation • Task Parallelism is available across stages • Eg. Vertices are processed while fragments processed etc. • Data Parallelism is available across stream entities. • Each entity is independ of each other because of the task offloading onto the fixed function units • Fixed Function Units encapsulate hard to parallelize work in optimized hardware components

  10. Still A Scheduling Problem • Processing and on-chip resources must be dynamically reallocated to pipeline stages • Depends on the current loads at different stages • How to determine if different stages get more cores or more cache becomes an issue. • Hardware Multithreading provides a solution to thread stalls distributes resources more evenly

  11. CUDA • CUDA is a more general data parallel model • No Pipe • Clusters of Threads • Scatter Operations (Multiple Write) • Gather Operations (Multiple Read) • Application based decomposition of threads • Threads can share data and communicate with each other

  12. CUDA Programming Model • GPU is viewed as a coprocessor with DRAM and many parallel threads • Data parallel portions of applications can be offloaded onto this coprocessor • C on the GPU • Global and Shared Variables • Pointers and Explicit Memory Allocation • OpenGL and DirectX interoperability

  13. Tesla Architecture • Scalable array of multithreaded Streaming Multiprocessors or SMs 768 to 12,288 concurrent threads

  14. Kernels • C C++ Simple Functions or Full Programs • Consists of thread blocks and grids • Thread Block • Set of concurrent threads that cooperate through barriers and shared memory. • Grid • Set of thread blocks that are independent form each other • Multiple Grids per Kernel

  15. Syntax Example • __global__ void my_par_func(float a){ do something with a } intdimGrid = 256, dimBlock 256 my_par_func<<<dimGrid,dimBlock>>>(5.0f)

  16. Execution • SIMT Single Instruction Multiple Model Scheduler schedules Warps or sets of concurrent threads on SM units. • Warp is scheduled independently of other warps • If a Warps threads diverge in control flow path the paths are each executed turning off the threads that are not effected • No recursion is allowed for stack space problems

  17. SIMD vs SIMT • CUDA utilizes the wide SIMD units • However SIMD is not exposed to the programmer • Instead SIMD units are used by multiple threads at once • SIMT utilizes of SIMD

  18. CUDA Wrap Up • More general model using same hardware • GPU is a CUDA coprocessor • Tesla Architecture 768 to 12000+ threads • C C++ syntax • Serial Branching • No recursion • SIMD used by SIMT

  19. Another Model GRAMPS • General Runtime Architecture for Multicore Parallel Systems • A programming model for graphics pipelines • Allows for custom pipelines mixing fixed function and programmable stages • Data is exchanged using queues and buffers • Motivation comes from hybrid applications • REYES Rasterization and Ray Tracing

  20. Execution Graphs • Analog of a GPU pipeline • Made up of Stages • Provides scheduling information • Not limited to execution DAGs • Cycles are not forbidden • Forward progress is not guaranteed • Flexibility presumably outweighs the cost of well behaved programs assurance

  21. Stages • Types SHADER THREAD FIXEDFUNCTION • Operate asynchronously exposing parallelism • Indicate similarities in data access and execution characteristics for efficient processing • Useful when benefits coherent execution outweigh deferred processing

  22. Shader • Short live run to completion computations • Per element programs • Push operation introduced for conditional output • Otherwise queue inputs and outputs are managed automatically • Shader instances are scheduled in packets similar to GPU execution

  23. Threads and Fixed Function • Threads • Similar to CPU threads designed for task parallelism • Must be manually parallelize by the application • Useful for repacking data between Shader stages and processing bulk chunks of data where sharing or cross communication is needed • Fixed Function • Hardware unit wrappers

  24. Buffers and Queues • Buffers • essentially shared memory across stages • Queues • Packets are the primitive data format of the queue defined at creation • Opaque packets: are for data chunks which need not be interpreted • Collection packets: for shader group dispatch • Queue Manipulation • Thread/Fixed Stages • Shader Stages

  25. Thread Fixed Stages • reserve-commit • reserve: returns called a reference to one or more contiguous packets a reservation is also acquired • commit: is a notification that releases the referenced data back to the system • Input commit means packet has been consumed • Output commit means packet can go downstream

  26. Shader Stages • Queue ops are transparent to the user • As input packets arrive output reservations are attained • When all shader instances for a collection packer are done the commits happen automatically • Queue Sets are introduced • Groups of queues viewed as single queues for sharing among shaders

  27. Summary GRAMPS • Application creates stages, queues, and buffers. • Queues and buffer are bound to stages • Computation proceeds according to execution graphs • Computation graphs are fully programmable • Dynamic aggregation of work at runtime

More Related