Personal tools

Difference between revisions of "Fftw3"

From hpcwiki

Jump to: navigation, search
(Created page with "yum install fftw yum install fftw-devel.x86_64 Install fftw3 from sources since the package is not available in yum: wget ftp://ftp.fftw.org/pub/fftw/fftw-3.3.5.tar.gz tar...")
 
 
(3 intermediate revisions by 2 users not shown)
Line 1: Line 1:
yum install fftw
+
Install FFTW library:
  
yum install fftw-devel.x86_64
+
# yum install fftw3
 +
# yum install fftw3-devel
  
Install fftw3 from sources since the package is not available in yum:
+
In Centos 7 this will install fftw3 lib in /usr/lib64
 
+
and include files in /usr/include
wget ftp://ftp.fftw.org/pub/fftw/fftw-3.3.5.tar.gz
+
 
+
tar -xzvf fftw-3.3.5.tar.gz
+
 
+
cd fftw-3.3.5
+
 
+
./configure --with-g77-wrappers --enable-mpi --enable-float --enable-single F77=mpif77
+
 
+
make
+
 
+
make install
+

Latest revision as of 22:12, 13 June 2017

Install FFTW library:

# yum install fftw3
# yum install fftw3-devel

In Centos 7 this will install fftw3 lib in /usr/lib64 and include files in /usr/include