easyconfigs-it4i/archive/i/ictce/ictce-8.3.5.eb
2019-11-06 13:27:39 +01:00

32 lines
820 B
Plaintext

easyblock = "Toolchain"
name = 'ictce'
version = '8.3.5'
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
suff = '1.150'
local_compver = '2016.%s' % suff
dependencies = [ # version/released
('icc', local_compver),
('ifort', local_compver),
('impi', '5.1.2.150', '', ('iccifort', local_compver)),
('imkl', '11.3.%s' % suff, '', ('iimpi', version)),
]
moduleclass = 'toolchain'
# Salomon specific optimalization
modextravars = {
'CC': 'icc',
'CXX': 'icpc',
'F90': 'ifort',
'F77': 'ifort',
'FC': 'ifort',
'OPTFLAGS': '-O3 -xHost -ip',
'DEBUGFLAGS': '-O0 -g'
}