mirror of
https://code.it4i.cz/sccs/easyconfigs-it4i.git
synced 2025-04-16 19:50:50 +01:00

deleted: a/Anaconda2/Anaconda2-4.4.0.eb deleted: a/Anaconda3/Anaconda3-2019.10.eb deleted: a/Anaconda3/Anaconda3-4.4.0.eb deleted: a/Anaconda3/Anaconda3-5.3.1.eb deleted: a/Autotools/Autotools-20150215-GCC-6.3.0-2.27.eb deleted: a/Autotools/Autotools-20170619.eb deleted: a/Autotools/Autotools-20180311.eb
40 lines
1.5 KiB
Plaintext
40 lines
1.5 KiB
Plaintext
easyblock = "Toolchain"
|
|
|
|
name = 'foss'
|
|
version = '2015g'
|
|
|
|
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 = '4.9.3'
|
|
local_local_binutilsver = '2.25'
|
|
local_tcver = '%s-local_binutils-%s' % (local_gccver, local_local_binutilsver)
|
|
|
|
local_blaslib = 'OpenBLAS'
|
|
local_blasver = '0.2.14'
|
|
blas = '%s-%s' % (local_blaslib, local_blasver)
|
|
blaslocal_suff = '-LAPACK-3.5.0'
|
|
|
|
# toolchain used to build foss dependencies
|
|
local_comp_mpi_tc_name = 'gompi'
|
|
local_comp_mpi_tc_ver = "%s" % version
|
|
local_comp_mpi_tc = (local_comp_mpi_tc_name, local_comp_mpi_tc_ver)
|
|
|
|
# local_compiler toolchain depencies
|
|
# we need GCC and OpenMPI as explicit dependencies instead of gompi toolchain
|
|
# because of toolchain preperation functions
|
|
# For local_binutils, stick to http://wiki.osdev.org/Cross-Compiler_Successful_Builds
|
|
dependencies = [
|
|
('GCC', local_gccver, '-local_binutils-%s' % local_local_binutilsver),
|
|
('binutils', local_local_binutilsver, '', ('GCC', local_tcver)),
|
|
('OpenMPI', '1.8.8', '', ('GNU', '%s-%s' % (local_gccver, local_local_binutilsver))),
|
|
(local_blaslib, local_blasver, blaslocal_suff, ('GNU', '%s-%s' % (local_gccver, local_local_binutilsver))),
|
|
('FFTW', '3.3.4', '', local_comp_mpi_tc),
|
|
('ScaLAPACK', '2.0.2', '-%s%s' % (blas, blaslocal_suff), local_comp_mpi_tc),
|
|
]
|
|
|
|
moduleclass = 'toolchain'
|