Is there any general FFT lib available for running on the GPU using OpenCL? As far as my knowledge goes, Apple sample code for power-of-two OpenCL FFT is the only such code available?

Does any such library exist for non-power-of-two transform sizes? If not, how easy or difficult is it to modify the Apple OpenCL sample?

I am looking at image processing applications, with non-power-of-two transform sizes, and I will have to do a whole bunch of FFTs, a batched FFT.

link|improve this question
feedback

5 Answers

up vote 1 down vote accepted

I know of an OpenCL FFT library that is currently under development, but they don't plan on having non-power-of-two transform sizes in the first release.

Can you provide any information about your application? It might help to get the priority for that feature raised if it's something a lot of people can use.

link|improve this answer
feedback

You can download some OpenCL code samples including FFT from the SHOC benchmark suite.

link|improve this answer
but this is only 1D FFTs, power-of-two..., but nevertheless very useful, thanks – Neo Nov 22 '10 at 2:23
Nice! Been coding one of these libraries myself. Glad to be building on the shoulders of giants :) – Chad Brewbaker Nov 30 '10 at 1:33
any luck so far ??.... – Neo Dec 8 '10 at 4:56
feedback

Null-padding can be used to make arbitrary-length data fit for a power-of-two FFT algorithm. Consider if that would suit your application. Increasing the number of samples decreases the "step size" in the output domain, which means higher output resolution.

link|improve this answer
feedback

OpenMM (https://simtk.org/home/openmm) contains a 3D FFT for OpenCL. It may not work for you directly, since it's designed for a specific case: 3D FFTs where each dimension is small enough to be stored in local memory (e.g. a 100x100x100 grid). But it does support non-power-of-two sizes (radix 2, 3, 4, and 5), so you might be able to adapt it.

link|improve this answer
feedback

Have a look at APPML-FFT library. Though its still for power of two transforms.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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