mirror of
https://code.it4i.cz/sccs/easyconfigs-it4i.git
synced 2025-04-13 18:31:21 +01:00
43 lines
1.4 KiB
Plaintext
43 lines
1.4 KiB
Plaintext
# IT4Innovations 2018
|
|
|
|
easyblock = 'ConfigureMake'
|
|
|
|
name = 'FFTW'
|
|
version = '3.3.7'
|
|
|
|
homepage = 'http://www.fftw.org'
|
|
description = """FFTW is a C subroutine library for computing the discrete Fourier transform (DFT)
|
|
in one or more dimensions, of arbitrary input size, and of both real and complex data."""
|
|
|
|
toolchain = {'name': 'GCC', 'version': '6.3.0-2.27'}
|
|
toolchainopts = {'optarch': True, 'pic': True}
|
|
|
|
source_urls = [homepage]
|
|
sources = ['fftw-%(version)s.tar.gz']
|
|
|
|
common_configopts = "--enable-threads --enable-openmp --with-pic"
|
|
|
|
configopts = [
|
|
common_configopts + " --enable-single --enable-sse2 ",
|
|
common_configopts + " --enable-quad-precision",
|
|
common_configopts + " --enable-long-double ",
|
|
common_configopts + " --enable-sse2 ", # default as last
|
|
|
|
]
|
|
|
|
sanity_check_paths = {
|
|
'files': [
|
|
'bin/fftw%s' %
|
|
x for x in [
|
|
'-wisdom', '-wisdom-to-conf', 'f-wisdom', 'l-wisdom', 'q-wisdom']] + [
|
|
'include/fftw3%s' %
|
|
x for x in [
|
|
'.f', '.f03', '.h', 'l.f03', 'q.f03']] + [
|
|
'lib/libfftw3%s%s.a' %
|
|
(x, y) for x in [
|
|
'', 'f', 'l'] for y in [
|
|
'', '_omp', '_threads']] + [
|
|
'lib/libfftw3q.a', 'lib/libfftw3q_omp.a'], 'dirs': ['lib/pkgconfig'], }
|
|
|
|
moduleclass = 'numlib'
|