Mercurial > hg > sv-dependency-builds
annotate src/fftw-3.3.3/support/twovers.sh @ 48:9530b331f8c1
Add Cap'n Proto source
author | Chris Cannam <cannam@all-day-breakfast.com> |
---|---|
date | Tue, 25 Oct 2016 11:17:01 +0100 |
parents | 37bf6b4a2645 |
children |
rev | line source |
---|---|
Chris@10 | 1 #! /bin/sh |
Chris@10 | 2 |
Chris@10 | 3 # wrapper to generate two codelet versions, with and without |
Chris@10 | 4 # fma |
Chris@10 | 5 |
Chris@10 | 6 genfft=$1 |
Chris@10 | 7 shift |
Chris@10 | 8 |
Chris@10 | 9 echo "#ifdef HAVE_FMA" |
Chris@10 | 10 echo |
Chris@10 | 11 $genfft -fma -reorder-insns -schedule-for-pipeline $* |
Chris@10 | 12 echo |
Chris@10 | 13 echo "#else /* HAVE_FMA */" |
Chris@10 | 14 echo |
Chris@10 | 15 $genfft $* |
Chris@10 | 16 echo |
Chris@10 | 17 echo "#endif /* HAVE_FMA */" |