mirror of
https://code.it4i.cz/sccs/easyconfigs-it4i.git
synced 2025-04-24 15:31:29 +01:00
27 lines
806 B
Plaintext
27 lines
806 B
Plaintext
# IT4Innovations 2019
|
|
|
|
easyblock = 'Toolchain'
|
|
|
|
name = 'intel'
|
|
version = '2018.04'
|
|
|
|
homepage = 'http://software.intel.com/en-us/intel-cluster-toolkit-compiler/'
|
|
description = "Compiler toolchain including Intel compilers, Intel MPI and Intel Math Kernel Library (MKL)."
|
|
|
|
toolchain = SYSTEM
|
|
|
|
local_compver = '2018.5.274'
|
|
local_gccver = '6.3.0'
|
|
local_local_binutilsver = '2.27'
|
|
gccsuff = '-GCC-%s-%s' % (local_gccver, local_local_binutilsver)
|
|
dependencies = [
|
|
('GCCcore', local_gccver),
|
|
('local_binutils', local_local_binutilsver, '-GCCcore-%s' % local_gccver),
|
|
('icc', local_compver, gccsuff),
|
|
('ifort', local_compver, gccsuff),
|
|
('impi', '2018.4.274', '', ('iccifort', '%s%s' % (local_compver, gccsuff))),
|
|
('imkl', '2018.4.274', '', ('iimpi', version)),
|
|
]
|
|
|
|
moduleclass = 'toolchain'
|