Massively Parallel Algorithms - SS 2013

News

The lecture begins at 8:45 am every Wednesday.

About this Course

There are big changes afoot. The era of increased performance from faster single cores and optimized single core programs has ended. Instead, highly parallel GPU cores, initially developed for shading, can now run hundreds or thousands of threads in parallel. Consequently, they are increasingly being adopted to offload and augment conventional (albeit multi-core) CPUs. And the technology is getting better, faster, and cheaper. It will probably even become a general computing processor on mobile devices, because it offers more processing power per energy amount.

The high number of parallel cores, however, poses a great challenge for software and algorithm design that must expose massive parallelism to benefit from the new hardware architecture. The main purpose of the lecture is to teach practical algorithm design for such parallel hardware.

Simulation is widely regarded as the third pillar of science (in addition to experimentation and theory). Simulation has an ever increasing demand for high-performance computing. The latter has received a boost with the advent of GPUs, and it is even becoming -- to some extent -- a commodity.

There are many scientific areas where the knowledge you will gain in this course can be very valuable and useful to you:

In this course, you will get hands-on experience in developing software for massively parallel computing architectures. For the first half of the lecture, there will be supervised exercises to familiarize yourself with the CUDA parallel programming model and environment. The exercises will comprise, for instance, image processing algorithms, such as you might find in Photoshop or Instagram.

In the second half, students will work on self-chosen projects.

Prerequisites are:

  1. A little bit of experience with C/C++ ; note that we will need just plain old C during this course, but the concept of pointers should be familiar
  2. Algorithmic thinking (and, hopefully, some pleasure when thinking about algorithms)

Useful is, but not required, is a computer/notebook with an Nvidia GPU that is CUDA capable. You can find a list of all supported GPU's here. If you don't have access to such a computer, you are welcome to work on your assignments in our lab.

Not required are

Slides

The following table contains the topics and the accompanying slides (it will be filled step-by-step after the respective lectures).

Week Topics Slides Assignments Frameworks
1. Introduction (More Moore, stream programming model, Flynn's taxonomy, overall speedup, Amdahl's law, Gustafson's law, data parallelism, task parallelism) PDF1 PDF2 Assignment 1 Slides Memcpy_and_Kernel_Launch
2. Introduction to CUDA and Fundamental Concepts of Parallel Programming 1 (terminology, control flow, transfering data, blocks, data flow in general) PDF
3. Introduction to CUDA and Fundamental Concepts of Parallel Programming 2 (multi-dimensional blocks and grids, cuda functions, constant memory ) PDF Assignment 2 Reverse_Array_and_Fractal_Zoomer
4. Introduction to CUDA and Fundamental Concepts of Parallel Programming 3 (constant memory, more details on the GPU architecture, warps, measuring performance, GPU/CPU synchronization, shared memory, algorithm for dot product, barrier synchronization, race conditions) PDF Assignment 3 Reduce_Max_Sum
5. Introduction to CUDA and Fundamental Concepts of Parallel Programming 4 (document similarity, coalesced memory access, heat transfer simulation, double buffering pattern, texture memory, GPU's memory hierarchy, parallel histogram computation, atomic operations) PDF Assignment 4 Heat_Transfer
6. Dense Matrix Algorithms (matrix vector product, column major storage, 4 variants of this algorithm, matrix-matrix multiplication, blocked matrix multiplication, arithmetic intensity, Strassen's algorithm) PDF Assignment 5
7. Parallel prefix-sum 1 (definition, simple examples, Hillis-Steele algorithm, depth & work complexity, Blelloch's algorithm, optimization) PDF
8. Parallel prefix-sum 2 (Brent's theorem, application to prefix-sum, theoretical speedup based on Brent, split operation, quick introduction into sequential radix sort, radix sort on the GPU) PDF
9. Parallel prefix-sum 3 (Stream compaction, summed area tables, depth-of-field rendering, anisotropic texture filtering, face detection) PDF
10. Parallel sorting 1 (comparator networks, the 0-1 principle, odd-even mergesort, bitonic sorting) PDF
11. Random Forests 1 (classification problem, simple solutions, decision trees, information gain, entropy, conditional entropy, problems of decision trees) PDF
12. Random Forests 2 (wisdom of crowds, bootstrapping/subsampling, randomization during construction, features & pitfalls, applications: digit recognition, Kinect-like body tracking) PDF

Some very simple examples that can serve as a starting point. They contain a makefile and should compile out-of-the-box at least under Max OS X and Linux.

Textbooks

The following textbooks can help review the material covered in class:

Please note that the course is not based on one single textbook! Some topics might even not be covered in any current textbook! So, I'd suggest you first look at the books in the library before purchasing a copy.

If you plan on buying one of these books, you might want to consider buying a used copy -- they can often be purchased for a fraction of the price of a new one. Two good internet used book shops are Abebooks and BookButler.

Grades and Points achieved by the Assignments

For taking part in a so-called "Fachgespräch" (mini oral exam), you need a grade from the assignments >= 4.0 . You can get this by doing the exercises (assignments). You need at least 30% of all points of all asignments to achieve a grade of 4.0 .

Some Additional Literature You Might Want to Read Online

Course exercise projects created by students in SS2013

  • Fingercounting

    video










  • Fingertip Localization using Blobtracking

    video









  • Procedural Textures Generation & Visualization

    video









  • Real-Time Ball Tracking (based on a Framework from the class Echtzeitbildverarbeitung by Prof. Udo Frese)

    video









  • Letter Recognition

    video









  • Canny Edge Detector
  • Arbitrary Sized Integers
  • Gabriel Zachmann
    Last modified: Mon Jul 22 15:26:59 MDT 2013