-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Save and import FFT wisdom #67
Comments
Hi, no, that's currently not possible. In principle it should be possible to implement such a feature. In practice I'd need to think about the best way to implement this. Note that each MPI process will produce a different FFTW wisdom file for each 1D transform, meaning that the total number of wisdom files to save and load is |
Is there a possibility of just saving the plan into a file then reloading it? something like:
|
So the only issue with using HDF5 is that most of the PencilArray types are not supported for some reason. There has to be a definition in the PHDF5Driver I'm guessing? If anyone knows where to start point me to it. I'll start looking into it. |
Using the HDF5 format is a good idea. However I'm not sure we would gain much by using the So the simplest would be to write all the fields contained in a |
@jipolanco makes sense. I'll take a look at it since I think it would definitely be helpful. Thanks again for for this package! Definitely been extremely useful. Edit: Just saw your reply for this: jipolanco/PencilArrays.jl#90 |
That's great if you want to take a shot at this! If it's of any help, the |
Hi, I am wondering if PencilFFTs has the function to export and import the FFT wisdom file, such as FFTW.import_wisdom() and FFTW.export_wisdom() in FFTW.jl? Thx!
The text was updated successfully, but these errors were encountered: