User Tools

Site Tools


fft

General

This project will deal with the computation of the fast fourier transform (FFT) and singular value decompositions (SVD) using GPU acceleration. There are first implementations entirely based on OpenCL available, which should be reconsidered and extended to CUDA and OpenMP. Consequently, the student will learn how to code in CUDA and OpenCL for using GPUs, and also get some experience with OpenMP. Successful implementations will be made available to the public via the free open source library ViennaCL.

Prospective Students

Juraj Kabzan

Milestone Tasklist

The following list of milestones will help you in completing the project successfully. The reimbursement for each of the milestones is indicative, as we hope that you will reach and complete the final milestone anyway :-)

Milestone 1

  1. Familiarize with FFT: Investigate and understand the current implementation of FFT routines in ViennaCL. Familiarize yourself with how OpenCL kernels are called and how multiple backends are supported in other routines.

Milestone 2

  1. Refactor FFT: Extend the current implementation of FFT to the CUDA and OpenMP backends. Update the current test suite (also considering corner cases) for the nightly builds. Update the documentation accordingly. Ensure that there are no severe performance bottlenecks.

Milestone 3

  1. Refactor NMF: Refactor the nonnegative matrix factorization code from only OpenCL to all three compute backends (CUDA, OpenCL, OpenMP). This involves the following tasks:
    1. Port the kernel `mul_div_kernel` to all three compute backends
    2. Modify the interface to `nmf()` such that `matrix_base` instead of `matrix` is accepted.
    3. Adjust the nightly test such that all three backends are tested and that the execution time is reduced by about a factor of five.
    4. Adjust the documentation in the manual accordingly
    5. Create an example in `examples/tutorial/` explaining the usage of the nmf-routine

Additional Information

Primary Mentor

fft.txt · Last modified: 2015/01/22 14:45 by viennastar