Difference between revisions of "FFTW"
Weibullguy (talk | contribs) (→Contents) |
|||
Line 117: | Line 117: | ||
= Contents = | = Contents = | ||
− | {| style="text-align: left | + | {|style="text-align: left" |
+ | |-valign="top" | ||
+ | !Installed Directories: | ||
+ | |None | ||
|-valign="top" | |-valign="top" | ||
!Installed Programs: | !Installed Programs: | ||
− | | | + | |fftwl-wisdom, fftw-wisdom-to-conf |
|-valign="top" | |-valign="top" | ||
!Installed Libraries: | !Installed Libraries: | ||
− | | | + | |libfftw3l.so, libfftw3l.la, libfftw3l.a |
+ | |-valign="top" | ||
+ | !Symlinks: | ||
+ | |None | ||
|} | |} | ||
Line 130: | Line 136: | ||
{| style="text-align: left | {| style="text-align: left | ||
|-valign="top" | |-valign="top" | ||
− | ! | + | !fftwl-wisdom: |
|Creates wisdom (pre-planned/optimized transforms) for specified sizes, writing wisdom to stdout or file. | |Creates wisdom (pre-planned/optimized transforms) for specified sizes, writing wisdom to stdout or file. | ||
|-valign="top" | |-valign="top" |
Revision as of 09:18, 7 February 2007
Download Source: | ftp://ftp.fftw.org/pub/fftw/fftw-3.2.2.tar.gz |
---|
Contents
Introduction to FFTW
FFTW is a C subroutine library for computing the discrete Fourier transform (DFT) in one or more dimensions. The name, "FFTW," stands for "Fastest Fourier Transform in the West." FFTW was developed at MIT, which is in the east. DJBFFT is an alternative that claims to be faster.
Homepage: http://www.fftw.org/
Dependencies
Optional
- Objective Caml
- OpenMP is required if passing the --with-openmp: switch to the configure script.
Configuration Information
Some options that you may wish to pass to the configure script.
--enable-single: compile FFTW in single precision. | ||||||||||||
--enable-long-double: compile FFTW in long-double precision. | ||||||||||||
--enable-k7: enable AMD k7 optimizations, including 3dNow! | ||||||||||||
--enable-sse: enable SSE optimizations. | ||||||||||||
--enable-sse2: enable SSE2 optimizations. | ||||||||||||
--disable-fortran: don't include FORTRAN callable wrappers. | ||||||||||||
--with-openmp: use OpenMP directives instead of a threads library.
Non-MultilibCompile the package: ./configure --prefix=/usr --enable-shared && make Install the package: make install Build and install the info pages for FFTW: make install-info Install the PDF documentation for FFTW: install -v -m755 -d /usr/share/doc/FFTW-3.2.2 && cp -v doc/fftw3.pdf /usr/share/doc/FFTW-3.2.2 Install the html documentation for FFTW: install -v -m755 -d /usr/share/doc/FFTW-3.2.2/html && cp -v doc/html/*.html /usr/share/doc/FFTW-3.2.2/html Multilib32BitCompile the package: CC="gcc ${BUILD32} -fPIC" CXX="g++ ${BUILD32} -fPIC" \ ./configure --prefix=/usr --enable-shared && make Install the package: make install N32Compile the package: CC="gcc ${BUILDN32} -fPIC" CXX="g++ ${BUILDN32} -fPIC" \ ./configure --prefix=/usr --libdir=/usr/lib32 --enable-shared && make Install the package make install 64BitCompile the package: CC="gcc ${BUILD64} -fPIC" CXX="g++ ${BUILD64} -fPIC" \ ./configure --prefix=/usr --libdir=/usr/lib64 --enable-shared && make Install the package: make install Build and install the info pages for FFTW: make install-info Install the PDF documentation for FFTW: install -v -m755 -d /usr/share/doc/FFTW-3.2.2 && cp -v doc/fftw3.pdf /usr/share/doc/FFTW-3.2.2 Install the html documentation for FFTW: install -v -m755 -d /usr/share/doc/FFTW-3.2.2/html && cp -v doc/html/*.html /usr/share/doc/FFTW-3.2.2/html Contents
Short Description
|