Skip to content
Snippets Groups Projects
Select Git revision
  • 4553e994455c0129c1b90a61da3764898c523ec3
  • 2023 default protected
2 results

MATLAB-2023a-GCCcore-11.3.0.eb

Blame
  • FFTW-3.3.10-ipsmpi-2022a.eb 1019 B
    name = 'FFTW'
    
    version = '3.3.10'
    
    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': 'ipsmpi', 'version': '2022a'}
    toolchainopts = {'pic': True}
    
    source_urls = [homepage]
    sources = ['fftw-3.3.10.tar.gz']
    
    checksums = ['56c932549852cddcfafdab3820b0200c7742675be92179e59e6215b340e26467']
    
    # 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
    
    # compilation fails on AMD systems when configuring with --enable-avx-128-fma,
    # because 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'