FFTW FAQ - Section 4
Internals of FFTW


Question 4.1. How does FFTW work?

The innovation (if it can be so called) in FFTW consists in having an interpreter execute the transform. The program for the interpreter (the plan) is computed at runtime according to the characteristics of your machine/compiler. This peculiar software architecture allows FFTW to adapt itself to almost any machine.

For more details, see the paper "The Fastest Fourier Transform in the West", by M. Frigo and S. G. Johnson, available at the FFTW web page. See also "FFTW: An Adaptive Software Architecture for the FFT", in ICASSP '98.

Question 4.2. Why is FFTW so fast?

This is a complex question, and there is no simple answer. In fact, the authors do not fully know the answer, either. In addition to many small performance hacks throughout FFTW, there are three general reasons for FFTW's speed. For more details on these three topics, see the paper "The Fastest Fourier Transform in the West", by M. Frigo and S. G. Johnson, available at the FFTW web page.

Question 4.3. What is this wisdom thing?

wisdom is the name of the mechanism that FFTW uses to save and restore plans. Rather than just saving plans, FFTW remembers what it learns about your machine, and becomes wiser and wiser as time passes by. You can save wisdom for later use.

Question 4.4. Why do you use wisdom? I just wanted to save a plan.

wisdom could be implemented with less effort than a general plan-saving mechanism would have required. In addition, wisdom provides additional benefits. For example, if you are planning transforms of size 1024, and later you want a transform of size 2048, most of the calculations of the 1024 case can be reused.

In short, wisdom does more things with less effort, and seemed like The Right Thing to do.


Next: Known bugs.
Back: Using FFTW.
Return to contents.

Matteo Frigo and Steven G. Johnson / fftw@fftw.org - 07 November 1999

Extracted from FFTW Frequently Asked Questions with Answers, Copyright © 1999 Massachusetts Institute of Technology.