mirror of
https://code.it4i.cz/sccs/easyconfigs-it4i.git
synced 2025-04-15 03:11:22 +01:00
25 lines
708 B
Plaintext
25 lines
708 B
Plaintext
easyblock = 'Toolchain'
|
|
|
|
name = 'intel'
|
|
version = '2018a'
|
|
|
|
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 = {'name': 'system', 'version': ''}
|
|
|
|
compver = '2018.1.163'
|
|
gccver = '6.3.0'
|
|
binutilsver = '2.27'
|
|
gccsuff = '-GCC-%s-%s' % (gccver, binutilsver)
|
|
dependencies = [
|
|
('GCCcore', gccver),
|
|
('binutils', binutilsver, '-GCCcore-%s' % gccver),
|
|
('icc', compver, gccsuff),
|
|
('ifort', compver, gccsuff),
|
|
('impi', compver, '', ('iccifort', '%s%s' % (compver, gccsuff))),
|
|
('imkl', compver, '', ('iimpi', version)),
|
|
]
|
|
|
|
moduleclass = 'toolchain'
|