Rate This Document
Findability
Accuracy
Completeness
Readability

Installing FFTW

Procedure

  1. Use PuTTY to log in to the server as the root user.
  2. Run the following commands to decompress the FFTW installation package:
    cd /path/to/SRC
    tar -xvf fftw-3.3.8.tar.gz
  3. Run the following command to go to the directory generated after decompression:
    cd fftw-3.3.8
  4. Run the following command to execute the bootstrap.sh script:
    ./bootstrap.sh
  5. Run the following command to perform the configuration:
    ./configure --prefix=/path/to/DEPENDENCIES --enable-shared --enable-static --enable-fma --enable-neon --enable-mpi
  6. Run the following commands to perform the compilation and installation:
    make -j
    make -j install