Introduction: FFTW is a C subroutine library for computing the discrete Fourier transform (DFT) in one or more dimensions, of arbitrary input size, and of both real and complex data (as well as of even/odd data, i.e. the discrete cosine/sine transforms or DCT/DST). Website: http://www.fftw.org/ Note: This package contains the fftw libraries for single, double and long-double precision for both 32 and 64-bits. Requirements: NA Configure and Compile Options: Compiler: Sun Studio 11 64-bits Components CC = "/opt/SUNWspro/bin/cc -xtarget=opteron -xarch=amd64" F77 = "/opt/SUNWspro/bin/f77 -xtarget=opteron -xarch=amd64" CFLAGS = "-fast -xtarget=opteron -xarch=amd64 -KPIC -xautopar -xlibmil" FFLAGS = "-fast -xtarget=opteron -xarch=amd64 -KPIC -xautopar -xlibmil" ./configure [--enable-single] [--enable-long-double] \ --prefix=/usr/local/fftw-3.0.1 \ --bindir=/usr/local/fftw-3.0.1/bin/amd64 \ --libdir=/usr/local/fftw-3.0.1/lib/amd64 \ --with-openmp --enable-long-double 32-bits Components CC = "/opt/SUNWspro/bin/cc -xtarget=opteron" F77 = "/opt/SUNWspro/bin/f77 -xtarget=opteron" CFLAGS = "-fast -xtarget=opteron -KPIC -xautopar -xlibmil" FFLAGS = "-fast -xtarget=opteron -KPIC -xautopar -xlibmil" ./configure [--enable-single] [--enable-long-double] \ --prefix=/usr/local/fftw-3.0.1 \ --bindir=/usr/local/fftw-3.0.1/bin/i86 \ --libdir=/usr/local/fftw-3.0.1/lib \ --with-openmp --enable-long-double