PPT-CS 179: GPU Computing

Author : sherrill-nordquist | Published Date : 2017-01-13

Lecture 2 more basics Recap Can use GPU to solve highly parallelizable problems Straightforward extension to C Separate CUDA code into cu and cuh files and compile

Presentation Embed Code

Download Presentation

Download Presentation The PPT/PDF document "CS 179: GPU Computing" is the property of its rightful owner. Permission is granted to download and print the materials on this website for personal, non-commercial use only, and to display it on your personal computer provided you do not modify the materials and that you retain all copyright notices contained in the materials. By downloading content from our website, you accept the terms of this agreement.

CS 179: GPU Computing: Transcript


Lecture 2 more basics Recap Can use GPU to solve highly parallelizable problems Straightforward extension to C Separate CUDA code into cu and cuh files and compile with nvcc to create object files o files. ITS Research Computing. Mark Reed . Objectives. Learn why computing with accelerators is important. Understand accelerator hardware. Learn what types of problems are suitable for accelerators. Survey the programming models available. mei. W. . Hwu. , 2007-2012 . University . of Illinois, Urbana-Champaign. 1. CS/EE 217. GPU Architecture and Parallel . Programming. Project . Kickoff. Two flavors. Application. Implement/optimize an realistic application on GPGPUs. Patrick Cozzi. University of Pennsylvania. CIS 565 - Fall 2014. Acknowledgements. CPU slides – Varun Sampath, NVIDIA. GPU . slides. Kayvon . Fatahalian. , CMU. Mike Houston, . NVIDIA. CPU and GPU Trends. Host-Device Data Transfer. 1. Moving data is slow. So far we’ve only considered performance when the data is already on the GPU. This neglects the slowest part of GPU programming: getting data on and off of GPU. Host-Device Data Transfer. 1. Moving data is slow. So far we’ve only considered performance when the data is already on the GPU. This neglects the slowest part of GPU programming: getting data on and off of GPU. Lecture 2: more basics. Recap. Can use GPU to solve highly parallelizable problems. Straightforward extension to C++. Separate CUDA code into .cu and .. cuh. files and compile with . nvcc. to create object files (.o files). Department of Geography and Planning. University at Albany. What is a GPU?. A GPU is a . graphics processing unit. Modern GPUs are composed of multiple processors. Each of these processors can perform operations similar to those of CPUs. Week 3. Goals:. More involved GPU-. accelerable. algorithms. Relevant hardware quirks. CUDA libraries. Outline. GPU-accelerated:. Reduction. Prefix sum. Stream compaction. Sorting (quicksort). Reduction. CS 179: GPU Programming Lecture 7 Last Week Memory optimizations using different GPU caches Atomic operations Synchronization with __ syncthreads () Week 3 Advanced GPU-accelerable algorithms “Reductions” to parallelize problems that don’t seem intuitively parallelizable CS 179: GPU Programming Lecture 7 Week 3 Goals: Advanced GPU- accelerable algorithms CUDA libraries and tools This Lecture GPU- accelerable algorithms: Reduction Prefix sum Stream compaction Sorting (quicksort) A Tale of Two Cities: GPU Computing and Machine Learning Dr. Xiaowen Chu Department of Computer Science, Hong Kong Baptist University Outline 2 Some Stories of “Two Cities” Evolution of CPUs/ CS 179: GPU Computing Lecture 18: Simulations and Randomness Simulations South Bay Simulations, http://www.panix.com/~brosen/graphics/iacc.400.jpg Flysurfer Kiteboarding, http://www.flysurfer.com/wp-content/blogs.dir/3/files/gallery/research-and-development/zwischenablage07.jpg Lecture 7. Last Week. Memory optimizations using different GPU caches. Atomic operations. Synchronization with __. syncthreads. (). Week 3. Advanced GPU-accelerable algorithms. “Reductions” to parallelize problems that don’t seem intuitively parallelizable. Scientific Computing and Visualization. Boston . University. GPU Programming. GPU – graphics processing unit. Originally designed as a graphics processor. Nvidia's. GeForce 256 (1999) – first GPU.

Download Document

Here is the link to download the presentation.
"CS 179: GPU Computing"The content belongs to its owner. You may download and print it for personal use, without modification, and keep all copyright notices. By downloading, you agree to these terms.

Related Documents