How to use fftw Guru interface
问题 I used to use fftw_plan_dft for multi-dimensional Fourier transformation. fftw_plan fftw_plan_dft(int rank, const int *n, fftw_complex *in, fftw_complex *out, int sign, unsigned flags); Now I want to pass 64 bit integer to fftw, it looks like I need to use fftw guru interface. fftw_plan fftw_plan_guru64_dft( int rank, const fftw_iodim64 *dims, int howmany_rank, const fftw_iodim64 *howmany_dims, fftw_complex *in, fftw_complex *out, int sign, unsigned flags); But I do not understand what is