Click here to Skip to main content
15,880,972 members
Articles / Multimedia / DirectX
Tip/Trick

Fast Fourier Transform using DX11

Rate me:
Please Sign up or sign in to vote.
4.83/5 (10 votes)
14 Jan 2015CPOL4 min read 66.4K   2.2K   40   20
FFT using DX11 compute shader

Introduction

We introduce FFT (Fast Fourier transform) using DX11 GPGPU, also implement FT without DX11. FT is commonly used to transform function in time domain to a function in frequency domain. This further allows us to analyze signals in frequency space and add our own changes (digital equalizers), these changes are further reconverted to time domain using inverse FT.

We implement FT without DX11 to verify the output.

Background

This article does not hope to introduce to the readers Fourier transform (FT), it only show cases use of GPU to perform FFTs, it would be a good idea to read up on FT. Also, you would be required to go through my previous article, since this article requires you to know about DX11 resource and views. Thankfully, DX11 already provides FFT related functionality so we are not required to write a compute shader.

Advantage of running FT on GPU is to gain performance from the parallel stream processors.

Using the Code

As with my previous article, the attached code must be referred to at all times.

We must start by creating a DX11 device, remember that CS is not available on all hardware. For the purpose of this tutorial, we will use the reference driver, this will force FFT to be computed on CPU.

C++
D3D11CreateDevice(NULL,D3D_DRIVER_TYPE_REFERENCE,0,0,0,0,D3D11_SDK_VERSION,&pDeviceOut,
&flOut,&pContextOut);

The next thing we need is the buffer on which we shall perform FT, remember what we perform here are strictly discrete FTs, so we work on buffer of fixed size, please refer to this link.

C++
for(int i=0;i<SIZE1;i++)
vBuf1.push_back(...)

In our example, we create input of real numbers (no imaginary component is being used), but the outcome of an FT may contain an imaginary component.

FT always has a cosine (real) and sine (imaginary) component, we implement our own variation using an exp (e^x) function where e=2.7182818 refer to this link.

Now Comes the Best Part

We need to create the buffer and fill it up with the data generated by the above code (please refer to my previous article related to compute shader), the difference between my previous article is that we use buffers that allow raw views as opposed to structured buffer. These buffers once created are made available to the GPU, the GPU can access them to perform the required computation.

C++
desc.MiscFlags = D3D11_RESOURCE_MISC_BUFFER_ALLOW_RAW_VIEWS;

Let's create the FFT object.

C++
HRESULT hr=D3DX11CreateFFT(pContextOut,&fftdesc,0 ,&fftbufferinfo,&pFFT)

The variable fftbufferinfo returned will tell us the resource requirements to complete FFT, in the attached code, we need 2 temporary buffers. We must create 2 temporary buffers and attach them, these temporary buffers are used internally to carry out the operation. Look this up.

C++
std::vector<ID3D11Buffer *> ArrBufTemp;std::vector<ID3D11UnorderedAccessView *> 
ArrBufTemp_UAV;

std::vector<ID3D11Buffer *> ArrBufpreCompu;std::vector<ID3D11UnorderedAccessView *> 
ArrBufpreCompu_UAV;

//We must create the buffers

hr=pFFT->AttachBuffersAndPrecompute(fftbufferinfo.NumTempBufferSizes,
fftbufferinfo.NumTempBufferSizes>0?&ArrBufTemp_UAV[0]:NULL,
fftbufferinfo.NumPrecomputeBufferSizes,
fftbufferinfo.NumPrecomputeBufferSizes>0?&ArrBufpreCompu_UAV[0]:NULL);

We must also set the forward scale, every FT point of output will be multiplied by this value.

C++
pFFT->SetForwardScale(1.0f);  // Set scaling to 1 unit only  
                              // (optional setting is 0, which means scaling is 1 unit)

The next thing is to call is:

C++
hr=pFFT->ForwardTransform(pBufin1_UAV,&respBufin1_UAV);

This will tell the DX11 runtime to perform FFT on the input data, it will return a resource view from which output data can be accessed. Further transforms can be performed on the output buffer.

Then pull out the output buffer, this is explained in my previous article on compute shader and in the attached code. Remember the output will be twice the size of the input buffer since we get two outputs for every input point, one real and one imaginary value (as discussed earlier).

Now let's verify this by writing our own FT. The below code is straight from my college books:

C++
for(k=0;k<n;k++)for(j=0;j<n;j++) 
b[k]=b[k]+a[j]*exp(i*-1*k*j*2*3.1415926/n);

b[k] will hold the FT output at point k.

The first for loop does the summation, the next one moves ahead to find the FT of the next point. (This part is self explanatory to people who have worked on FTs.)

The 2 for loops are used (hence a time complexity of n^2), not to mention exp function is added to work with complex numbers and is compute heavy, i =sqrt(-1), j,k are used in for loop. The output of our FT closely matches the output of DX11 FFT.

Since b[k] is calculated for every value of k, these operations can be carried out on every stream individually, hence FFT/FT implemented on GPU will greatly improve performance.

As an exercise, you may implement Inverse FT (IFT):

Points of Interest

FFTs are very computational intensive tasks, and to implement them on the GPU can highly optimize your code. You can try implementing your own version of a sound equalizer or a new winamp visualization using the attached code (may be my next project).

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Instructor / Trainer
India India
Hi,
I have been working with computers since my eight grade, programming the ZX Spectrum. I have always had an interest in assembly language and computer theory (and is still the reason for taking tons of online courses), actively code using C/C++ on Windows (using VS) and Linux (using QT).

I also provide training on data structures, algorithms, parallel patterns library , Graphics (DX11), GPGPUs (DX11-CS,AMP) and programming for performance on x86.
Feel free to call me at 0091-9823018914 (UTC +5:30)



(All views expressed here do not reflect the views of my employer).

Comments and Discussions

 
Questioncompiling on VS2013, d3dx11effect.h does not appear to be needed Pin
Jan Heckman17-Jan-15 23:52
professionalJan Heckman17-Jan-15 23:52 
QuestionThanks!! Pin
Sten Roar4-Jan-15 21:52
Sten Roar4-Jan-15 21:52 
AnswerRe: Thanks!! Pin
Asif Bahrainwala5-Jan-15 21:26
Asif Bahrainwala5-Jan-15 21:26 
GeneralRe: Thanks!! Pin
Sten Roar6-Jan-15 0:17
Sten Roar6-Jan-15 0:17 
GeneralRe: Thanks!! Pin
Asif Bahrainwala6-Jan-15 1:36
Asif Bahrainwala6-Jan-15 1:36 
GeneralRe: Thanks!! Pin
Sten Roar6-Jan-15 23:57
Sten Roar6-Jan-15 23:57 
BugRe: Thanks!! Pin
Asif Bahrainwala7-Jan-15 17:54
Asif Bahrainwala7-Jan-15 17:54 
Hi,
I found that the IFT is not correct for different lengths, ()[^]

modified 8-Jan-15 0:14am.

GeneralRe: Thanks!! Pin
Sten Roar7-Jan-15 20:55
Sten Roar7-Jan-15 20:55 
GeneralRe: Thanks!! Pin
Asif Bahrainwala8-Jan-15 17:59
Asif Bahrainwala8-Jan-15 17:59 
GeneralRe: Thanks!! Pin
Asif Bahrainwala9-Jan-15 22:35
Asif Bahrainwala9-Jan-15 22:35 
GeneralRe: Thanks!! Pin
Sten Roar11-Jan-15 22:19
Sten Roar11-Jan-15 22:19 
GeneralRe: Thanks!! Pin
Asif Bahrainwala12-Jan-15 6:08
Asif Bahrainwala12-Jan-15 6:08 
GeneralRe: Thanks!! Pin
Sten Roar13-Jan-15 23:41
Sten Roar13-Jan-15 23:41 
GeneralRe: Thanks!! Pin
Asif Bahrainwala14-Jan-15 6:17
Asif Bahrainwala14-Jan-15 6:17 
QuestionFFT via AMP Pin
Asif Bahrainwala19-Jul-13 9:04
Asif Bahrainwala19-Jul-13 9:04 
AnswerRe: FFT via AMP Pin
Dewey20-Jul-13 2:00
Dewey20-Jul-13 2:00 
GeneralRe: FFT via AMP Pin
Asif Bahrainwala21-Jul-13 0:12
Asif Bahrainwala21-Jul-13 0:12 
GeneralRe: FFT via AMP Pin
Dewey24-Jul-13 0:43
Dewey24-Jul-13 0:43 
QuestionThank you!! Pin
are_all_nicks_taken_or_what4-Apr-12 3:01
are_all_nicks_taken_or_what4-Apr-12 3:01 
AnswerRe: Thank you!! Pin
Asif Bahrainwala1-Jun-12 3:55
Asif Bahrainwala1-Jun-12 3:55 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.