FFTW-3.3.8-intel-2020b.eb 1020 B

123456789101112131415161718192021222324252627282930
  1. name = 'FFTW'
  2. version = '3.3.8'
  3. homepage = 'http://www.fftw.org'
  4. description = """FFTW is a C subroutine library for computing the discrete Fourier transform (DFT)
  5. in one or more dimensions, of arbitrary input size, and of both real and complex data."""
  6. toolchain = {'name': 'intel', 'version': '2020b'}
  7. toolchainopts = {'pic': True}
  8. source_urls = [homepage]
  9. sources = [SOURCELOWER_TAR_GZ]
  10. patches = ['FFTW-%(version)s_fix-icc-no-gcc.patch']
  11. checksums = [
  12. '6113262f6e92c5bd474f2875fa1b01054c4ad5040f6b0da7c03c98821d9ae303', # fftw-3.3.8.tar.gz
  13. '1b3319b98a2ca4ead68290b3229385c0573e22749a5a2ffb49486a0bbb37dc1e', # FFTW-3.3.8_fix-icc-no-gcc.patch
  14. ]
  15. # no quad precision, requires GCC v4.6 or higher
  16. # see also
  17. # http://www.fftw.org/doc/Extended-and-quadruple-precision-in-Fortran.html
  18. with_quad_prec = False
  19. # compilation fails on AMD systems when configuring with --enable-avx-128-fma,
  20. # because Intel compilers do not support FMA4 instructions
  21. use_fma4 = False
  22. runtest = 'check'
  23. moduleclass = 'numlib'