annotate src/fftw-3.3.3/support/twovers.sh @ 23:619f715526df sv_v2.1

Update Vamp plugin SDK to 2.5
author Chris Cannam
date Thu, 09 May 2013 10:52:46 +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 */"