mirror of
https://code.it4i.cz/sccs/easyconfigs-it4i.git
synced 2025-04-07 23:42:12 +01:00

modified: f/foss/foss-2018a.eb modified: g/gompi/gompi-2017b.eb modified: g/gompi/gompi-2018a.eb new file: h/hwloc/hwloc-1.11.7-GCCcore-8.3.0.eb new file: n/numactl/numactl-2.0.11-GCCcore-8.3.0.eb modified: o/OpenMPI/OpenMPI-1.10.7-GCC-6.3.0-2.27.eb modified: o/OpenMPI/OpenMPI-2.1.5-GCC-8.3.0-2.32.eb modified: o/OpenMPI/OpenMPI-3.1.4-GCC-6.3.0-2.27.eb modified: o/OpenMPI/OpenMPI-4.0.0-GCC-6.3.0-2.27.eb deleted: h/hwloc/hwloc-1.11.7-GCC-8.3.0-2.32.eb
36 lines
1.0 KiB
Plaintext
36 lines
1.0 KiB
Plaintext
# IT4Innovations 2019
|
|
|
|
easyblock = 'Toolchain'
|
|
|
|
name = 'foss'
|
|
version = '2017b'
|
|
|
|
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 = '6.3.0-2.27'
|
|
|
|
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', '2.1.5', '', ('GCC', local_gccver)),
|
|
(local_blaslib, local_blasver, '', ('GCC', local_gccver)),
|
|
('FFTW', '3.3.6', '', local_comp_mpi_tc),
|
|
('ScaLAPACK', '2.0.2', '-%s' % blas, local_comp_mpi_tc),
|
|
]
|
|
|
|
moduleclass = 'toolchain'
|