easyconfigs-it4i/f/foss/foss-2019a.eb
Lukáš Krupčík e91765c8cb new file: f/foss/foss-2019a.eb
new file:   g/gompi/gompi-2019a.eb
	new file:   i/intelcuda/intelcuda-2020a.eb
	new file:   m/magma/magma-2.5.3-foss-2018a-CUDA.eb
	new file:   m/magma/magma-2.5.3_Fix_makefile_for_intel.patch
	new file:   s/ScaLAPACK/ScaLAPACK-2.0.2-gompi-2019a-OpenBLAS-0.2.20.eb
2020-06-29 08:33:40 +02:00

37 lines
1.0 KiB
Plaintext

# IT4Innovations 2020
# LK
easyblock = 'Toolchain'
name = 'foss'
version = '2019a'
homepage = '(none)'
description = """GNU Compiler Collection (GCC) based local_compiler toolchain, including
OpenMPI for MPI support, OpenBLAS (BLAS and LAPACK support), FFTW and ScaLAPACK."""
toolchain = SYSTEM
local_gccver = '8.3.0-2.32'
local_blaslib = 'OpenBLAS'
local_blasver = '0.2.20'
blas = '%s-%s' % (local_blaslib, local_blasver)
# toolchain used to build foss dependencies
local_comp_mpi_tc_name = 'gompi'
local_comp_mpi_tc = (local_comp_mpi_tc_name, version)
# we need GCC and OpenMPI as explicit dependencies instead of gompi toolchain
# because of toolchain preparation functions
# For local_binutils, stick to http://wiki.osdev.org/Cross-Compiler_Successful_Builds
dependencies = [
('GCC', local_gccver),
('OpenMPI', '4.0.4', '-CUDA', ('GCC', local_gccver)),
(local_blaslib, local_blasver, '', ('GCC', local_gccver)),
('FFTW', '3.3.8'),
('ScaLAPACK', '2.0.2', '-%s' % blas, local_comp_mpi_tc),
]
moduleclass = 'toolchain'