mirror of
https://code.it4i.cz/sccs/easyconfigs-it4i.git
synced 2025-04-17 20:20:49 +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
32 lines
874 B
Plaintext
32 lines
874 B
Plaintext
easyblock = "Toolchain"
|
|
|
|
name = 'ictce'
|
|
version = '8.3.5'
|
|
|
|
homepage = 'http://software.intel.com/en-us/intel-cluster-toolkit-local_compiler/'
|
|
description = """Intel Cluster Toolkit Compiler Edition provides Intel C/C++ and Fortran local_compilers, Intel MPI & Intel MKL."""
|
|
|
|
toolchain = SYSTEM
|
|
|
|
local_suff = '1.150'
|
|
local_local_compver = '2016.%s' % local_suff
|
|
|
|
dependencies = [ # version/released
|
|
('icc', local_local_compver),
|
|
('ifort', local_local_compver),
|
|
('impi', '5.1.2.150', '', ('iccifort', local_local_compver)),
|
|
('imkl', '11.3.%s' % local_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'
|
|
}
|