annotate src/fftw-3.3.3/support/twovers.sh @ 61:d101c4099725

Remove "other" Vamp SDK repo from sv-dependency-builds
author Chris Cannam
date Mon, 06 Mar 2017 13:29:58 +0000
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 */"