vote up 1 vote down star

Hi,

does anyone know an implementation of the inverse FFT in HLSL/GLSL/cg ... ?

It would save me much work.

Best, heinrich

flag

27% accept rate

5 Answers

vote up 0 vote down

Thanks for your answers, all of you. Using CUDA or OpenCL is a good idea. I already thought about it, maybe I'll give it a try. Has anyone made experiences about the interopability between CUDA and DirectX ? Is the Directx11 shader sample already running under Directx 10 ?

link|flag
Generally you shouldn't write responses to other people's answers in the form of answers yourself. Use comments (to reply to specific answers) or edit your question to do a general response (adding something like "EDIT: [blah blah blah]" at the bottom, or something like that). – Platinum Azure Oct 26 at 5:40
Ah okay. I was not aware how the music playe at stackoverflow. thanks! – Heinrich Oct 26 at 6:08
vote up 0 vote down

Maybe you could take a look at OpenCL which is a standard for general purpose computing on graphics (and other) hardware.
The wikipedia article contains a OpenCL example for a standard FFT:
http://en.wikipedia.org/wiki/OpenCL#Example

If you are on a Mac with OS X 10.6, you just need to install the developer tools to get started with OpenCL development. I also heard that hardware vendors already provide basic OpenCL driver support on Windows.

link|flag
1  
I guess opencl under windows is supported by nvidia using CUDA. – Heinrich Oct 27 at 10:19
Thanks for the hint! I just found that AMD also provides an SDK called "ATI Stream" which offers OpenCL support. developer.amd.com/gpu/ATIStreamSDKBetaProgram/… – weichsel Oct 27 at 10:56
vote up 2 vote down

DirectX11 comes with a FFT example for compute shaders (see DX11 August SDK Release Notes). As PereAllenWebb points out, this can be also used for inverse FFT.

Edit: If you just want a fast FFT, you could try the CUFFT, which runs on the GPU. It's part of the CUDA SDK. The AMCL from AMD also has a FFT, which is currently not GPU accelerated, but this will be likely added soon.

link|flag
M-O-U-S-E... :-) – RBarryYoung Oct 27 at 1:59
vote up 1 vote down

Unfortunately I don't have any FFT implementation :/

link|flag
vote up 2 vote down

Do you already have a FFT implementation? You may already be aware, but the inverse can be computed by reversing the order of the N inputs, taking the FFT over those, and dividing the result by N.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.