annotate src/fftw-3.3.5/rdft/simd/codlist.mk @ 148:b4bfdf10c4b3

Update Win64 capnp builds to v0.6
author Chris Cannam <cannam@all-day-breakfast.com>
date Mon, 22 May 2017 18:56:49 +0100
parents 7867fa7e1b6b
children
rev   line source
cannam@127 1 # This file contains a standard list of RDFT SIMD codelets. It is
cannam@127 2 # included by common/Makefile to generate the C files with the actual
cannam@127 3 # codelets in them. It is included by {sse,sse2,...}/Makefile to
cannam@127 4 # generate and compile stub files that include common/*.c
cannam@127 5
cannam@127 6 # You can customize FFTW for special needs, e.g. to handle certain
cannam@127 7 # sizes more efficiently, by adding new codelets to the lists of those
cannam@127 8 # included by default. If you change the list of codelets, any new
cannam@127 9 # ones you added will be automatically generated when you run the
cannam@127 10 # bootstrap script (see "Generating your own code" in the FFTW
cannam@127 11 # manual).
cannam@127 12
cannam@127 13 HC2CFDFTV = hc2cfdftv_2.c hc2cfdftv_4.c hc2cfdftv_6.c hc2cfdftv_8.c \
cannam@127 14 hc2cfdftv_10.c hc2cfdftv_12.c hc2cfdftv_16.c hc2cfdftv_32.c \
cannam@127 15 hc2cfdftv_20.c
cannam@127 16
cannam@127 17 HC2CBDFTV = hc2cbdftv_2.c hc2cbdftv_4.c hc2cbdftv_6.c hc2cbdftv_8.c \
cannam@127 18 hc2cbdftv_10.c hc2cbdftv_12.c hc2cbdftv_16.c hc2cbdftv_32.c \
cannam@127 19 hc2cbdftv_20.c
cannam@127 20
cannam@127 21 ###########################################################################
cannam@127 22 SIMD_CODELETS = $(HC2CFDFTV) $(HC2CBDFTV)