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
36 lines
1.0 KiB
Plaintext
36 lines
1.0 KiB
Plaintext
# IT4Innovations 2019
|
|
|
|
easyblock = 'Toolchain'
|
|
|
|
name = 'foss'
|
|
version = '2018a'
|
|
|
|
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', '3.1.4', '', ('GCC', local_gccver)),
|
|
(local_blaslib, local_blasver, '', ('GCC', local_gccver)),
|
|
('FFTW', '3.3.7', '', local_comp_mpi_tc),
|
|
('ScaLAPACK', '2.0.2', '-%s' % blas, local_comp_mpi_tc),
|
|
]
|
|
|
|
moduleclass = 'toolchain'
|