HPL-2.3-foss-2020b.eb 880 B

123456789101112131415161718192021
  1. name = 'HPL'
  2. version = '2.3'
  3. homepage = 'https://www.netlib.org/benchmark/hpl/'
  4. description = """HPL is a software package that solves a (random) dense linear system in double precision (64 bits)
  5. arithmetic on distributed-memory computers. It can thus be regarded as a portable as well as freely available
  6. implementation of the High Performance Computing Linpack Benchmark."""
  7. toolchain = {'name': 'foss', 'version': '2020b'}
  8. toolchainopts = {'usempi': True}
  9. source_urls = ['https://www.netlib.org/benchmark/%(namelower)s']
  10. sources = [SOURCELOWER_TAR_GZ]
  11. # fix Make dependencies, so parallel build also works
  12. patches = ['HPL_parallel-make.patch']
  13. checksums = [
  14. '32c5c17d22330e6f2337b681aded51637fb6008d3f0eb7c277b163fadd612830', # hpl-2.3.tar.gz
  15. '2a5bf9c4f328049828ddecec7ba3f05a9e25d236f4212747c53bd22fea80c5e6', # HPL_parallel-make.patch
  16. ]
  17. moduleclass = 'tools'