Skip to content

Commit e6391f2

Browse files
committed
Update FFTW version
1 parent 52a0598 commit e6391f2

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed

bin/install-fftw.sh

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
#!/bin/bash
2-
echo "HELLO"
2+
33
# This script installs FFTW locally. It may need to environment
44
# variables to work, like 'export CC=gcc' in ARCHER.
55

6-
FFTW=fftw-3.3.4
6+
FFTW=fftw-3.3.8
77

88
set -e
99

@@ -33,12 +33,10 @@ download_and_install() {
3333
tar -xzf ${1}.tar.gz
3434
cd ${1}
3535
echo "Configuring "${1}"."
36-
./configure --quiet --enable-shared --enable-openmp --prefix=${LIBS_DIR}
36+
./configure --enable-shared --enable-openmp --enable-sse2 --enable-avx --prefix=${LIBS_DIR}
3737
echo "Compiling and installing "${1}"."
38-
{
39-
make
40-
make install
41-
} > /dev/null
38+
make
39+
make install
4240
echo "Done."
4341
cd ${LIBS_DIR}
4442
fi;

0 commit comments

Comments
 (0)