~ubuntu-branches/ubuntu/utopic/fftw3/utopic

« back to all changes in this revision

Viewing changes to rdft/simd/codlist.mk

  • Committer: Package Import Robot
  • Author(s): Matthias Klose
  • Date: 2011-12-14 13:21:22 UTC
  • mfrom: (3.1.5 sid)
  • Revision ID: package-import@ubuntu.com-20111214132122-l4avyl2kkr7vq5aj
Tags: 3.3-1ubuntu1
* Merge with Debian; remaining changes:
  - Revert the ARM workaround.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# This file contains a standard list of RDFT SIMD codelets.  It is
 
2
# included by common/Makefile to generate the C files with the actual
 
3
# codelets in them.  It is included by {sse,sse2,...}/Makefile to
 
4
# generate and compile stub files that include common/*.c
 
5
 
 
6
# You can customize FFTW for special needs, e.g. to handle certain
 
7
# sizes more efficiently, by adding new codelets to the lists of those
 
8
# included by default.  If you change the list of codelets, any new
 
9
# ones you added will be automatically generated when you run the
 
10
# bootstrap script (see "Generating your own code" in the FFTW
 
11
# manual).
 
12
 
 
13
HC2CFDFTV = hc2cfdftv_2.c hc2cfdftv_4.c hc2cfdftv_6.c hc2cfdftv_8.c     \
 
14
hc2cfdftv_10.c hc2cfdftv_12.c hc2cfdftv_16.c hc2cfdftv_32.c             \
 
15
hc2cfdftv_20.c
 
16
 
 
17
HC2CBDFTV = hc2cbdftv_2.c hc2cbdftv_4.c hc2cbdftv_6.c hc2cbdftv_8.c     \
 
18
hc2cbdftv_10.c hc2cbdftv_12.c hc2cbdftv_16.c hc2cbdftv_32.c             \
 
19
hc2cbdftv_20.c
 
20
 
 
21
###########################################################################
 
22
SIMD_CODELETS = $(HC2CFDFTV) $(HC2CBDFTV)