Last active
November 17, 2020 22:13
-
-
Save jaredmales/0aacc00b0ce493cd63d3c5c75ccc6cdd to your computer and use it in GitHub Desktop.
An fftw build script
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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