annotate src/fftw-3.3.8/rdft/simd/codlist.mk @ 169:223a55898ab9 tip default

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