Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is it possible to call cufft library calls in device function?

Tags:

cuda

nvidia

cufft

I use the cuFFT library calls in a host code they work fine, but I want to call the cuFFT library from a kernel. Earlier versions of the CUDA didn't have this kind of support but with the dynamic parallelism is this possible ?

It will be great if there are any examples on how to achieve this.

like image 358
Sagar Masuti Avatar asked Jun 24 '13 07:06

Sagar Masuti


1 Answers

Despite the introduction of dynamic parallelism on Kepler (cc 3.5) cards, cuFFT remains a host API and there is currently no way of creating or executing FFT operations in device code using cuFFT.

like image 151
talonmies Avatar answered Oct 13 '22 18:10

talonmies