~ubuntu-branches/ubuntu/raring/fftw3/raring-proposed

« back to all changes in this revision

Viewing changes to support/twovers.sh

  • Committer: Bazaar Package Importer
  • Author(s): Paul Brossier
  • Date: 2006-05-31 13:44:05 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20060531134405-ol9hrbg6bh81sg0c
Tags: 3.1.1-1
* New upstream release (closes: #350327, #338487, #338501)
* Add --enable-portable-binary to use -mtune instead of -march
* Use --with-gcc-arch=G5 / pentium4 on powerpc / i386
* Updated Standards-Version

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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 */"