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 command to decompress the FFTW installation package:
    tar -xvf 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 run the bootstrap.sh script:
    ./bootstrap.sh
  5. Run the following command to perform configuration:
    ./configure --prefix=/path/to/FFTW --enable-shared --enable-static --enable-fma --enable-neon --enable-float
  6. Run the following commands to perform compilation and installation:
    make -j40
    make install
  7. Run the following commands to set FFTW environment variables:
    export PATH=/path/to/FFTW/bin:$PATH
    export LD_LIBRARY_PATH=/path/to/FFTW/lib:$LD_LIBRARY_PATH