Go to file
Lu zhiping c5d45f1843 changed debian/source/format to native 2022-06-27 14:41:30 +08:00
api Import Upstream version 3.3.8 2022-06-27 14:41:06 +08:00
debian changed debian/source/format to native 2022-06-27 14:41:30 +08:00
dft Import Upstream version 3.3.8 2022-06-27 14:41:06 +08:00
doc Remove dates from documentation to get reproducible documentation 2022-06-27 14:41:29 +08:00
genfft Import Upstream version 3.3.8 2022-06-27 14:41:06 +08:00
kernel Import Upstream version 3.3.8 2022-06-27 14:41:06 +08:00
libbench2 Import Upstream version 3.3.8 2022-06-27 14:41:06 +08:00
m4 Import Upstream version 3.3.8 2022-06-27 14:41:06 +08:00
mpi Import Upstream version 3.3.8 2022-06-27 14:41:06 +08:00
rdft Import Upstream version 3.3.8 2022-06-27 14:41:06 +08:00
reodft Import Upstream version 3.3.8 2022-06-27 14:41:06 +08:00
simd-support Fix runtime detection of NEON support on armhf and arm64 2022-06-27 14:41:29 +08:00
support Import Upstream version 3.3.8 2022-06-27 14:41:06 +08:00
tests Import Upstream version 3.3.8 2022-06-27 14:41:06 +08:00
threads Import Upstream version 3.3.8 2022-06-27 14:41:06 +08:00
tools Import Upstream version 3.3.8 2022-06-27 14:41:06 +08:00
AUTHORS Import Upstream version 3.3.8 2022-06-27 14:41:06 +08:00
CMakeLists.txt Import Upstream version 3.3.8 2022-06-27 14:41:06 +08:00
CONVENTIONS Import Upstream version 3.3.8 2022-06-27 14:41:06 +08:00
COPYING Import Upstream version 3.3.8 2022-06-27 14:41:06 +08:00
COPYRIGHT Import Upstream version 3.3.8 2022-06-27 14:41:06 +08:00
ChangeLog Import Upstream version 3.3.8 2022-06-27 14:41:06 +08:00
FFTW3Config.cmake.in Import Upstream version 3.3.8 2022-06-27 14:41:06 +08:00
FFTW3ConfigVersion.cmake.in Import Upstream version 3.3.8 2022-06-27 14:41:06 +08:00
INSTALL Import Upstream version 3.3.8 2022-06-27 14:41:06 +08:00
Makefile.am Import Upstream version 3.3.8 2022-06-27 14:41:06 +08:00
Makefile.in Import Upstream version 3.3.8 2022-06-27 14:41:06 +08:00
NEWS Import Upstream version 3.3.8 2022-06-27 14:41:06 +08:00
README Import Upstream version 3.3.8 2022-06-27 14:41:06 +08:00
README-perfcnt.md Import Upstream version 3.3.8 2022-06-27 14:41:06 +08:00
TODO Import Upstream version 3.3.8 2022-06-27 14:41:06 +08:00
aclocal.m4 Import Upstream version 3.3.8 2022-06-27 14:41:06 +08:00
bootstrap.sh Import Upstream version 3.3.8 2022-06-27 14:41:06 +08:00
cmake.config.h.in Import Upstream version 3.3.8 2022-06-27 14:41:06 +08:00
compile Import Upstream version 3.3.8 2022-06-27 14:41:06 +08:00
config.guess Import Upstream version 3.3.8 2022-06-27 14:41:06 +08:00
config.h.in Import Upstream version 3.3.8 2022-06-27 14:41:06 +08:00
config.sub Import Upstream version 3.3.8 2022-06-27 14:41:06 +08:00
configure Import Upstream version 3.3.8 2022-06-27 14:41:06 +08:00
configure.ac Import Upstream version 3.3.8 2022-06-27 14:41:06 +08:00
depcomp Import Upstream version 3.3.8 2022-06-27 14:41:06 +08:00
fftw.pc.in Import Upstream version 3.3.8 2022-06-27 14:41:06 +08:00
install-sh Import Upstream version 3.3.8 2022-06-27 14:41:06 +08:00
ltmain.sh Import Upstream version 3.3.8 2022-06-27 14:41:06 +08:00
missing Import Upstream version 3.3.8 2022-06-27 14:41:06 +08:00

README

FFTW is a free collection of fast C routines for computing the
Discrete Fourier Transform in one or more dimensions.  It includes
complex, real, symmetric, and parallel transforms, and can handle
arbitrary array sizes efficiently.  FFTW is typically faster than
other publically-available FFT implementations, and is even
competitive with vendor-tuned libraries.  (See our web page
http://fftw.org/ for extensive benchmarks.)  To achieve this
performance, FFTW uses novel code-generation and runtime
self-optimization techniques (along with many other tricks).

The doc/ directory contains the manual in texinfo, PDF, info, and HTML
formats.  Frequently asked questions and answers can be found in the
doc/FAQ/ directory in ASCII and HTML.

For a quick introduction to calling FFTW, see the "Tutorial" section
of the manual.

INSTALLATION
------------

INSTALLATION FROM AN OFFICIAL RELEASE:

Please read chapter 10 "Installation and Customization" of the manual.
In short:

     ./configure
     make
     make install

INSTALLATION FROM THE GIT REPOSITORY:

First, install these programs:

  ocaml, ocamlbuild, autoconf, automake, indent, and libtool,

Then, execute

    sh bootstrap.sh
    make
    
The bootstrap.sh script runs configure directly, but if you need to
re-run configure, you must pass the --enable-maintainer-mode flag:

    ./configure --enable-maintainer-mode [OTHER CONFIGURE FLAGS]

Alternatively, you can run

    sh mkdist.sh

which will run the entire bootstrapping process and generate
.tar.gz files similar to those for official releases.

CONTACTS
--------

FFTW was written by Matteo Frigo and Steven G. Johnson.  You can
contact them at fftw@fftw.org.  The latest version of FFTW,
benchmarks, links, and other information can be found at the FFTW home
page (http://www.fftw.org).  You can also sign up to the fftw-announce
Google group to receive (infrequent) updates and information about new
releases.