fjarri / reikna

Pure Python GPGPU library
http://reikna.publicfields.net/
MIT License
164 stars 16 forks source link

Dose reikna support ifft? #29

Closed diggerdu closed 7 years ago

fjarri commented 7 years ago

Yep, the forward/inverse switch is an optional parameter for the compiled computation:

fft = FFT(array).compile(thread)
fft(array, array) # forward transform
fft(array, array, inverse=True) # inverse transform