Chris@82: Chris@82: Chris@82: Chris@82: Chris@82:
Chris@82:Chris@82: Previous: Forgetting Wisdom, Up: Wisdom [Contents][Index]
Chris@82:FFTW includes two standalone utility programs that deal with wisdom. We
Chris@82: merely summarize them here, since they come with their own man
Chris@82: pages for Unix and GNU systems (with HTML versions on our web site).
Chris@82:
The first program is fftw-wisdom
(or fftwf-wisdom
in
Chris@82: single precision, etcetera), which can be used to create a wisdom file
Chris@82: containing plans for any of the transform sizes and types supported by
Chris@82: FFTW. It is preferable to create wisdom directly from your executable
Chris@82: (see Caveats in Using Wisdom), but this program is useful for
Chris@82: creating global wisdom files for fftw_import_system_wisdom
.
Chris@82:
Chris@82:
The second program is fftw-wisdom-to-conf
, which takes a wisdom
Chris@82: file as input and produces a configuration routine as output. The
Chris@82: latter is a C subroutine that you can compile and link into your
Chris@82: program, replacing a routine of the same name in the FFTW library, that
Chris@82: determines which parts of FFTW are callable by your program.
Chris@82: fftw-wisdom-to-conf
produces a configuration routine that links
Chris@82: to only those parts of FFTW needed by the saved plans in the wisdom,
Chris@82: greatly reducing the size of statically linked executables (which should
Chris@82: only attempt to create plans corresponding to those in the wisdom,
Chris@82: however).
Chris@82:
Chris@82:
Chris@82: