Skip to content

Instantly share code, notes, and snippets.

@jaredmales
Last active November 17, 2020 22:13
Show Gist options
  • Save jaredmales/0aacc00b0ce493cd63d3c5c75ccc6cdd to your computer and use it in GitHub Desktop.
Save jaredmales/0aacc00b0ce493cd63d3c5c75ccc6cdd to your computer and use it in GitHub Desktop.
An fftw build script
#!/bin/bash
#########################################################
# fftw build script
# Build all precisions with threads.
# Modified from old version to use with-combined-threads
#########################################################
./configure --enable-float --with-combined-threads --enable-threads --enable-shared
make -j
make install
./configure --with-combined-threads --enable-threads --enable-shared
make -j
make install
./configure --enable-long-double --with-combined-threads --enable-threads --enable-shared
make -j
make install
./configure --enable-quad-precision --with-combined-threads --enable-threads --enable-shared
make -j
make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment