package fftw3
Library
Module
Module type
Parameter
Class
Class type
Managing wisdom. Save and restore plans to/from disk or other media.
Wisdom.export write
exports the current wisdom to any medium, as specified by the callback function write
.
This function is not thread safe.
Wisdom.import read
imports wisdom from any input medium, as specified by the callback function read
. If the end of the input data is reached (which should never happen for valid data), read
should raise End_of_file
. The imported wisdom replaces any wisdom accumulated by the running program.
This function is not thread safe.
Widsom.from_file fname
replace the current wisdom with the one read from the file fname
.
Wisdom.from_string s
replace the current wisdom whith the one read from s
.
Wisdom.from_system()
replace the current wisdom with one read from an implementation-defined standard file (e.g. /etc/fftw/wisdom).