Move all to deprecated folder.
This commit is contained in:
78
deprecated/firmware/buildroot/package/fftw/Config.in
Normal file
78
deprecated/firmware/buildroot/package/fftw/Config.in
Normal file
@@ -0,0 +1,78 @@
|
||||
config BR2_PACKAGE_FFTW
|
||||
bool "fftw"
|
||||
help
|
||||
Library for computing Fast Fourier Transforms.
|
||||
|
||||
This library computes Fast Fourier Transforms (FFT) in one
|
||||
or more dimensions. It is extremely fast. This package
|
||||
contains the shared library version of the fftw libraries in
|
||||
double precision.
|
||||
|
||||
http://www.fftw.org
|
||||
|
||||
if BR2_PACKAGE_FFTW
|
||||
|
||||
config BR2_PACKAGE_FFTW_USE_SSE
|
||||
bool
|
||||
|
||||
config BR2_PACKAGE_FFTW_USE_SSE2
|
||||
bool
|
||||
|
||||
config BR2_PACKAGE_FFTW_USE_NEON
|
||||
bool
|
||||
|
||||
choice
|
||||
prompt "fftw precision"
|
||||
default BR2_PACKAGE_FFTW_PRECISION_DOUBLE
|
||||
help
|
||||
Selects fftw precision
|
||||
|
||||
config BR2_PACKAGE_FFTW_PRECISION_SINGLE
|
||||
bool "single"
|
||||
select BR2_PACKAGE_FFTW_USE_SSE if BR2_X86_CPU_HAS_SSE
|
||||
select BR2_PACKAGE_FFTW_USE_SSE2 if BR2_X86_CPU_HAS_SSE2
|
||||
select BR2_PACKAGE_FFTW_USE_NEON if BR2_ARM_CPU_HAS_NEON && !BR2_ARM_SOFT_FLOAT
|
||||
help
|
||||
Compile fftw in single precision, i.e. use 'float' for floating
|
||||
point type.
|
||||
|
||||
config BR2_PACKAGE_FFTW_PRECISION_DOUBLE
|
||||
bool "double"
|
||||
select BR2_PACKAGE_FFTW_USE_SSE2 if BR2_X86_CPU_HAS_SSE2
|
||||
help
|
||||
Compile fftw in double precision (the default), i.e. use 'double'
|
||||
for floating point type.
|
||||
|
||||
config BR2_PACKAGE_FFTW_PRECISION_LONG_DOUBLE
|
||||
bool "long double"
|
||||
# long-double precision require long-double trigonometric routines
|
||||
depends on !(BR2_TOOLCHAIN_BUILDROOT_UCLIBC && \
|
||||
(BR2_arm || BR2_mips || BR2_mipsel))
|
||||
help
|
||||
Compile fftw in long double precision, i.e. use 'long double'
|
||||
for floating point type.
|
||||
|
||||
config BR2_PACKAGE_FFTW_PRECISION_QUAD
|
||||
bool "quad"
|
||||
# quad-precision needs to have a gcc with libquadmath
|
||||
depends on (BR2_i386 || BR2_x86_64) && BR2_USE_WCHAR
|
||||
help
|
||||
Compile fftw in quadruple precision, i.e. use '__float128' for
|
||||
floating point type.
|
||||
|
||||
endchoice
|
||||
|
||||
config BR2_PACKAGE_FFTW_FAST
|
||||
bool "optimise for speed over accuracy"
|
||||
help
|
||||
Optimise for fast math functions, at the expense of accuracy.
|
||||
|
||||
Say 'y' if you need speed and can live with inaccuracies in
|
||||
the results. Say 'n' (the default) if accuracy is of utmost
|
||||
importance.
|
||||
|
||||
This basically uses gcc's -Ofast optimisation level, which in
|
||||
turn is basically using gcc's -ffast-math. See the gcc manual
|
||||
for what this means.
|
||||
|
||||
endif
|
||||
2
deprecated/firmware/buildroot/package/fftw/fftw.hash
Normal file
2
deprecated/firmware/buildroot/package/fftw/fftw.hash
Normal file
@@ -0,0 +1,2 @@
|
||||
# From http://www.fftw.org/fftw-3.3.4.tar.gz.md5sum
|
||||
md5 2edab8c06b24feeb3b82bbb3ebf3e7b3 fftw-3.3.4.tar.gz
|
||||
42
deprecated/firmware/buildroot/package/fftw/fftw.mk
Normal file
42
deprecated/firmware/buildroot/package/fftw/fftw.mk
Normal file
@@ -0,0 +1,42 @@
|
||||
################################################################################
|
||||
#
|
||||
# fftw
|
||||
#
|
||||
################################################################################
|
||||
|
||||
FFTW_VERSION = 3.3.4
|
||||
FFTW_SITE = http://www.fftw.org
|
||||
FFTW_INSTALL_STAGING = YES
|
||||
FFTW_LICENSE = GPLv2+
|
||||
FFTW_LICENSE_FILES = COPYING
|
||||
|
||||
FFTW_CONF_OPTS = --disable-fortran
|
||||
|
||||
FFTW_CONF_OPTS += $(if $(BR2_PACKAGE_FFTW_PRECISION_SINGLE),--enable,--disable)-single
|
||||
FFTW_CONF_OPTS += $(if $(BR2_PACKAGE_FFTW_PRECISION_LONG_DOUBLE),--enable,--disable)-long-double
|
||||
FFTW_CONF_OPTS += $(if $(BR2_PACKAGE_FFTW_PRECISION_QUAD),--enable,--disable)-quad-precision
|
||||
|
||||
FFTW_CFLAGS = $(TARGET_CFLAGS)
|
||||
ifeq ($(BR2_PACKAGE_FFTW_FAST),y)
|
||||
FFTW_CFLAGS += -O3 -ffast-math
|
||||
endif
|
||||
|
||||
# x86 optimisations
|
||||
FFTW_CONF_OPTS += $(if $(BR2_PACKAGE_FFTW_USE_SSE),--enable,--disable)-sse
|
||||
FFTW_CONF_OPTS += $(if $(BR2_PACKAGE_FFTW_USE_SSE2),--enable,--disable)-sse2
|
||||
|
||||
# ARM optimisations
|
||||
FFTW_CONF_OPTS += $(if $(BR2_PACKAGE_FFTW_USE_NEON),--enable,--disable)-neon
|
||||
FFTW_CFLAGS += $(if $(BR2_PACKAGE_FFTW_USE_NEON),-mfpu=neon)
|
||||
|
||||
# Generic optimisations
|
||||
ifeq ($(BR2_TOOLCHAIN_HAS_THREADS),y)
|
||||
FFTW_CONF_OPTS += --enable-threads --with-combined-threads
|
||||
else
|
||||
FFTW_CONF_OPTS += --disable-threads
|
||||
endif
|
||||
FFTW_CONF_OPTS += $(if $(BR2_GCC_ENABLE_OPENMP),--enable,--disable)-openmp
|
||||
|
||||
FFTW_CONF_OPTS += CFLAGS="$(FFTW_CFLAGS)"
|
||||
|
||||
$(eval $(autotools-package))
|
||||
Reference in New Issue
Block a user