mirror of
https://code.it4i.cz/sccs/easyconfigs-it4i.git
synced 2025-04-11 01:12:11 +01:00
29 lines
712 B
Plaintext
29 lines
712 B
Plaintext
easyblock = "Toolchain"
|
|
|
|
name = 'ictce'
|
|
version = '5.5.0'
|
|
|
|
homepage = 'http://software.intel.com/en-us/intel-cluster-toolkit-compiler/'
|
|
description = """Intel Cluster Toolkit Compiler Edition provides Intel C/C++ and Fortran compilers, Intel MPI & Intel MKL."""
|
|
|
|
toolchain = SYSTEM
|
|
|
|
compsuffix = '.5.192'
|
|
local_compver = '2013' + compsuffix
|
|
dependencies = [
|
|
('icc', local_compver),
|
|
('ifort', local_compver),
|
|
('impi', '4.1.1.036', '', ('iccifort', local_compver)),
|
|
('imkl', '11.0' + compsuffix, '', ('iimpi', version)),
|
|
]
|
|
|
|
moduleclass = 'toolchain'
|
|
# Salomon specific optimalization
|
|
modextravars = {
|
|
'CC': 'icc',
|
|
'CXX': 'icpc',
|
|
'F90': 'ifort',
|
|
'F77': 'ifort',
|
|
'FC': 'ifort',
|
|
}
|