Closed diggerdu closed 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
Yep, the forward/inverse switch is an optional parameter for the compiled computation: