comparison src/fftw-3.3.8/support/twovers.sh @ 167:bd3cc4d1df30

Add FFTW 3.3.8 source, and a Linux build
author Chris Cannam <cannam@all-day-breakfast.com>
date Tue, 19 Nov 2019 14:52:55 +0000
parents
children
comparison
equal deleted inserted replaced
166:cbd6d7e562c7 167:bd3cc4d1df30
1 #! /bin/sh
2
3 # wrapper to generate two codelet versions, with and without
4 # fma
5
6 genfft=$1
7 shift
8
9 echo "#if defined(ARCH_PREFERS_FMA) || defined(ISA_EXTENSION_PREFERS_FMA)"
10 echo
11 $genfft -fma $*
12 echo
13 echo "#else"
14 echo
15 $genfft $*
16 echo
17 echo "#endif"