Chris@10: TODO before FFTW-$2\pi$: Chris@10: Chris@10: * Wisdom: make it clear that it is specific to the exact fftw version Chris@10: and configuration. Report error codes when reading wisdom. Maybe Chris@10: have multiple system wisdom files, one per version? Chris@10: Chris@10: * DCT/DST codelets? which kinds? Chris@10: Chris@10: * investigate the addition-chain trig computation Chris@10: Chris@10: * I can't believe that there isn't a closed form for the omega Chris@10: array in Rader. Chris@10: Chris@10: * convolution problem type(s) Chris@10: Chris@10: * Explore the idea of having n < 0 in tensors, possibly to mean Chris@10: inverse DFT. Chris@10: Chris@10: * better estimator: possibly, let "other" cost be coef * n, where Chris@10: coef is a per-solver constant determined via some big numerical Chris@10: optimization/fit. Chris@10: Chris@10: * vector radix, multidimensional codelets Chris@10: Chris@10: * it may be a good idea to unify all those little loops that do Chris@10: copying, (X[i], X[n-i]) <- (X[i] + X[n-i], X[i] - X[n-i]), Chris@10: and multiplication of vectors by twiddle factors. Chris@10: Chris@10: * Pruned FFTs (basically, a vecloop that skips zeros). Chris@10: Chris@10: * Try FFTPACK-style back-and-forth (Stockham) FFT. (We tried this a Chris@10: few years ago and it was slower, but perhaps matters have changed.) Chris@10: Chris@10: * Generate assembly directly for more processors, or maybe fork gcc. =) Chris@10: Chris@10: * ensure that threaded solvers generate (block_size % 4 == 0) Chris@10: to allow SIMD to be used. Chris@10: Chris@10: * memoize triggen.