Does a Julia’s FFTW library keeps its own system wisdom?
I use fft’s quite often for a given set of array dimensions. I’d like to create optimized plans (using FFTW.EXHAUSTIVE flag). I know how to export and import plans and have been doing that, creating wisdom files for the set of data I have on a given folder. But I end up with lots of different wisdoms files.
Basically, what I’d like to have is a ever increasing system wisdom that is always imported on every usage of fft. Is that what happens already?