mirror of
https://code.it4i.cz/sccs/easyconfigs-it4i.git
synced 2025-04-17 04:00:49 +01:00

new file: archive/i/ictce/ictce-7.3.5.eb new file: archive/i/ictce/ictce-8.3.5.eb new file: archive/i/intelcuda/intelcuda-2016.10.eb new file: archive/i/iomkl/iomkl-2015.03.eb deleted: i/ictce/ictce-5.5.0.eb deleted: i/ictce/ictce-7.3.5.eb deleted: i/ictce/ictce-8.3.5.eb deleted: i/intelcuda/intelcuda-2016.10.eb deleted: i/iomkl/iomkl-2015.03.eb deleted: l/libMesh/libMesh-1.3.0-intel-2017c.eb deleted: l/libxml2/libxml2-2.9.2-ictce-7.3.5.eb
32 lines
959 B
Plaintext
32 lines
959 B
Plaintext
easyblock = "Toolchain"
|
|
|
|
name = 'ictce'
|
|
version = '7.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 = {'name': 'system', 'version': ''}
|
|
|
|
suff = '3.187'
|
|
compver = '2015.%s' % suff
|
|
|
|
dependencies = [ # version/released
|
|
('icc', compver), # Apr 13th 2015
|
|
('ifort', compver), # Apr 13th 2015
|
|
('impi', '5.0.3.048', '', ('iccifort', compver)), # Feb 10th 2015
|
|
('imkl', '11.2.%s' % suff, '', ('iimpi', version)), # Apr 13th 2015
|
|
]
|
|
|
|
moduleclass = 'toolchain'
|
|
# Salomon specific optimalization
|
|
modextravars = {
|
|
'CC': 'icc',
|
|
'CXX': 'icpc',
|
|
'F90': 'ifort',
|
|
'F77': 'ifort',
|
|
'FC': 'ifort',
|
|
'OPTFLAGS': '-O3 -xHost -ip',
|
|
'DEBUGFLAGS': '-O0 -g'
|
|
}
|