comparison src/fftw-3.3.3/support/twovers.sh @ 10:37bf6b4a2645

Add FFTW3
author Chris Cannam
date Wed, 20 Mar 2013 15:35:50 +0000
parents
children
comparison
equal deleted inserted replaced
9:c0fb53affa76 10:37bf6b4a2645
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 "#ifdef HAVE_FMA"
10 echo
11 $genfft -fma -reorder-insns -schedule-for-pipeline $*
12 echo
13 echo "#else /* HAVE_FMA */"
14 echo
15 $genfft $*
16 echo
17 echo "#endif /* HAVE_FMA */"