我要评分
获取效率
正确性
完整性
易理解

Installing FFTW

Procedure

  1. Use PuTTY to log in to the server as the root user.
  2. Run the following command to decompress the FFTW installation package:
    tar -zxvf fftw-3.3.8.tar.gz
  3. Run the following command to switch to the directory generated after the package is decompressed:
    cd fftw-3.3.8
  4. Run the following command to perform configuration:
    ./configure --prefix=/path/to/FFTW CC=gcc FC=gfortran F77=gfortran --enable-openmp --enable-threads --enable-threads --enable-shared=yes
  5. Run the following commands to perform compilation and installation:
    make -j
    make install