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.
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.
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.
desc.MiscFlags = D3D11_RESOURCE_MISC_BUFFER_ALLOW_RAW_VIEWS;
Let's create the FFT object.
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.
std::vector<ID3D11Buffer *> ArrBufTemp;std::vector<ID3D11UnorderedAccessView *>
ArrBufTemp_UAV;
std::vector<ID3D11Buffer *> ArrBufpreCompu;std::vector<ID3D11UnorderedAccessView *>
ArrBufpreCompu_UAV;
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.
pFFT->SetForwardScale(1.0f);
The next thing is to call is:
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:
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).