We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 52a0598 commit e6391f2Copy full SHA for e6391f2
bin/install-fftw.sh
@@ -1,9 +1,9 @@
1
#!/bin/bash
2
-echo "HELLO"
+
3
# This script installs FFTW locally. It may need to environment
4
# variables to work, like 'export CC=gcc' in ARCHER.
5
6
-FFTW=fftw-3.3.4
+FFTW=fftw-3.3.8
7
8
set -e
9
@@ -33,12 +33,10 @@ download_and_install() {
33
tar -xzf ${1}.tar.gz
34
cd ${1}
35
echo "Configuring "${1}"."
36
- ./configure --quiet --enable-shared --enable-openmp --prefix=${LIBS_DIR}
+ ./configure --enable-shared --enable-openmp --enable-sse2 --enable-avx --prefix=${LIBS_DIR}
37
echo "Compiling and installing "${1}"."
38
- {
39
- make
40
- make install
41
- } > /dev/null
+ make
+ make install
42
echo "Done."
43
cd ${LIBS_DIR}
44
fi;
0 commit comments