From e16cb6eb01eb824d6fa4449e8d822c87f849546a Mon Sep 17 00:00:00 2001 From: Damian Alvarez <swmanage@jwlogin05.juwels> Date: Wed, 21 Oct 2020 09:41:46 +0200 Subject: [PATCH] FFTW for new toolchains --- Golden_Repo/f/FFTW/FFTW-3.3.8-gompi-2020.eb | 36 ++++++++++++++++ Golden_Repo/f/FFTW/FFTW-3.3.8-iimpi-2020.eb | 42 +++++++++++++++++++ Golden_Repo/f/FFTW/FFTW-3.3.8-iompi-2020.eb | 3 +- Golden_Repo/f/FFTW/FFTW-3.3.8-ipsmpi-2020.eb | 3 +- .../f/FFTW/FFTW-3.3.8-gompi-2020.eb | 36 ++++++++++++++++ .../f/FFTW/FFTW-3.3.8-gompi-2020.eb | 36 ++++++++++++++++ 6 files changed, 152 insertions(+), 4 deletions(-) create mode 100644 Golden_Repo/f/FFTW/FFTW-3.3.8-gompi-2020.eb create mode 100644 Golden_Repo/f/FFTW/FFTW-3.3.8-iimpi-2020.eb create mode 100644 Golden_Repo/jusuf_overlay/f/FFTW/FFTW-3.3.8-gompi-2020.eb create mode 100644 Golden_Repo/juwelsbooster_overlay/f/FFTW/FFTW-3.3.8-gompi-2020.eb diff --git a/Golden_Repo/f/FFTW/FFTW-3.3.8-gompi-2020.eb b/Golden_Repo/f/FFTW/FFTW-3.3.8-gompi-2020.eb new file mode 100644 index 000000000..5348a7fe8 --- /dev/null +++ b/Golden_Repo/f/FFTW/FFTW-3.3.8-gompi-2020.eb @@ -0,0 +1,36 @@ +name = 'FFTW' +version = '3.3.8' + +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.""" + +site_contacts = 'i.gutheil@fz-juelich.de' + +toolchain = {'name': 'gompi', 'version': '2020'} +toolchainopts = {'pic': True} + +source_urls = [homepage] +sources = [SOURCELOWER_TAR_GZ] +checksums = ['6113262f6e92c5bd474f2875fa1b01054c4ad5040f6b0da7c03c98821d9ae303'] + +# no quad precision, requires GCC v4.6 or higher +# see also +# http://www.fftw.org/doc/Extended-and-quadruple-precision-in-Fortran.html +with_quad_prec = True + +# compilation fails on AMD systems when configuring with --enable-avx-128-fma, +# because Intel compilers do not support FMA4 instructions +use_fma4 = True + +# can't find mpirun/mpiexec and fails +# runtest = 'check' + +modextravars = { + 'FFTW_ROOT': '%(installdir)s', + 'FFTW_INCLUDE': '%(installdir)s/include', + 'FFTW_LIB': '%(installdir)s/lib', +} + +moduleclass = 'numlib' diff --git a/Golden_Repo/f/FFTW/FFTW-3.3.8-iimpi-2020.eb b/Golden_Repo/f/FFTW/FFTW-3.3.8-iimpi-2020.eb new file mode 100644 index 000000000..16668a684 --- /dev/null +++ b/Golden_Repo/f/FFTW/FFTW-3.3.8-iimpi-2020.eb @@ -0,0 +1,42 @@ +name = 'FFTW' +version = '3.3.8' + +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.""" + +site_contacts = 'i.gutheil@fz-juelich.de' + +toolchain = {'name': 'iimpi', 'version': '2020'} +toolchainopts = {'pic': True} + +source_urls = [homepage] +sources = [SOURCELOWER_TAR_GZ] + +# See https://github.com/FFTW/fftw3/commit/10e2040af822a08ed49d2f6a1db45a7a3ad50582 +patches = ['fftw_no-gcc-intel_2020.patch'] + +checksums = [ + '6113262f6e92c5bd474f2875fa1b01054c4ad5040f6b0da7c03c98821d9ae303', + 'f226cc6dbdc9d11d4340567ef3227d78284c4dc44b8e63c3901a079aa9527da6' +] + +# no quad precision, requires GCC v4.6 or higher +# see also +# http://www.fftw.org/doc/Extended-and-quadruple-precision-in-Fortran.html +with_quad_prec = False + +# Intel compilers do not support FMA4 instructions +use_fma4 = False + +# can't find mpirun/mpiexec and fails +# runtest = 'check' + +modextravars = { + 'FFTW_ROOT': '%(installdir)s', + 'FFTW_INCLUDE': '%(installdir)s/include', + 'FFTW_LIB': '%(installdir)s/lib', +} + +moduleclass = 'numlib' diff --git a/Golden_Repo/f/FFTW/FFTW-3.3.8-iompi-2020.eb b/Golden_Repo/f/FFTW/FFTW-3.3.8-iompi-2020.eb index d48e109f0..afd7ab702 100644 --- a/Golden_Repo/f/FFTW/FFTW-3.3.8-iompi-2020.eb +++ b/Golden_Repo/f/FFTW/FFTW-3.3.8-iompi-2020.eb @@ -27,8 +27,7 @@ checksums = [ # http://www.fftw.org/doc/Extended-and-quadruple-precision-in-Fortran.html with_quad_prec = False -# compilation fails on AMD systems when configuring with --enable-avx-128-fma, -# because Intel compilers do not support FMA4 instructions +# Intel compilers do not support FMA4 instructions use_fma4 = False # can't find mpirun/mpiexec and fails diff --git a/Golden_Repo/f/FFTW/FFTW-3.3.8-ipsmpi-2020.eb b/Golden_Repo/f/FFTW/FFTW-3.3.8-ipsmpi-2020.eb index 9da9748a4..1ccf39527 100644 --- a/Golden_Repo/f/FFTW/FFTW-3.3.8-ipsmpi-2020.eb +++ b/Golden_Repo/f/FFTW/FFTW-3.3.8-ipsmpi-2020.eb @@ -27,8 +27,7 @@ checksums = [ # http://www.fftw.org/doc/Extended-and-quadruple-precision-in-Fortran.html with_quad_prec = False -# compilation fails on AMD systems when configuring with --enable-avx-128-fma, -# because Intel compilers do not support FMA4 instructions +# Intel compilers do not support FMA4 instructions use_fma4 = False # can't find mpirun/mpiexec and fails diff --git a/Golden_Repo/jusuf_overlay/f/FFTW/FFTW-3.3.8-gompi-2020.eb b/Golden_Repo/jusuf_overlay/f/FFTW/FFTW-3.3.8-gompi-2020.eb new file mode 100644 index 000000000..edef15b1e --- /dev/null +++ b/Golden_Repo/jusuf_overlay/f/FFTW/FFTW-3.3.8-gompi-2020.eb @@ -0,0 +1,36 @@ +name = 'FFTW' +version = '3.3.8' + +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.""" + +site_contacts = 'i.gutheil@fz-juelich.de' + +toolchain = {'name': 'gompi', 'version': '2020'} +toolchainopts = {'pic': True} + +source_urls = [homepage] +sources = [SOURCELOWER_TAR_GZ] +checksums = ['6113262f6e92c5bd474f2875fa1b01054c4ad5040f6b0da7c03c98821d9ae303'] + +# no quad precision, requires GCC v4.6 or higher +# see also +# http://www.fftw.org/doc/Extended-and-quadruple-precision-in-Fortran.html +with_quad_prec = True + +# compilation fails on AMD systems when configuring with --enable-avx-128-fma, +# because AMD zen processors do not support FMA4 instructions +use_fma4 = False + +# can't find mpirun/mpiexec and fails +# runtest = 'check' + +modextravars = { + 'FFTW_ROOT': '%(installdir)s', + 'FFTW_INCLUDE': '%(installdir)s/include', + 'FFTW_LIB': '%(installdir)s/lib', +} + +moduleclass = 'numlib' diff --git a/Golden_Repo/juwelsbooster_overlay/f/FFTW/FFTW-3.3.8-gompi-2020.eb b/Golden_Repo/juwelsbooster_overlay/f/FFTW/FFTW-3.3.8-gompi-2020.eb new file mode 100644 index 000000000..edef15b1e --- /dev/null +++ b/Golden_Repo/juwelsbooster_overlay/f/FFTW/FFTW-3.3.8-gompi-2020.eb @@ -0,0 +1,36 @@ +name = 'FFTW' +version = '3.3.8' + +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.""" + +site_contacts = 'i.gutheil@fz-juelich.de' + +toolchain = {'name': 'gompi', 'version': '2020'} +toolchainopts = {'pic': True} + +source_urls = [homepage] +sources = [SOURCELOWER_TAR_GZ] +checksums = ['6113262f6e92c5bd474f2875fa1b01054c4ad5040f6b0da7c03c98821d9ae303'] + +# no quad precision, requires GCC v4.6 or higher +# see also +# http://www.fftw.org/doc/Extended-and-quadruple-precision-in-Fortran.html +with_quad_prec = True + +# compilation fails on AMD systems when configuring with --enable-avx-128-fma, +# because AMD zen processors do not support FMA4 instructions +use_fma4 = False + +# can't find mpirun/mpiexec and fails +# runtest = 'check' + +modextravars = { + 'FFTW_ROOT': '%(installdir)s', + 'FFTW_INCLUDE': '%(installdir)s/include', + 'FFTW_LIB': '%(installdir)s/lib', +} + +moduleclass = 'numlib' -- GitLab