annotate src/fftw-3.3.5/rdft/simd/codlist.mk @ 79:91c729825bca pa_catalina

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