mirror of
https://code.it4i.cz/sccs/easyconfigs-it4i.git
synced 2025-04-13 10:21:22 +01:00
44 lines
1.6 KiB
Plaintext
44 lines
1.6 KiB
Plaintext
# This is an easyconfig file for EasyBuild, see http://hpcugent.github.io/easybuild
|
|
|
|
name = 'impi'
|
|
version = '5.1.1.109'
|
|
|
|
homepage = 'http://software.intel.com/en-us/intel-mpi-library/'
|
|
description = """The Intel(R) MPI Library for Linux* OS is a multi-fabric message
|
|
passing library based on ANL MPICH2 and OSU MVAPICH2. The Intel MPI Library for
|
|
Linux OS implements the Message Passing Interface, version 2 (MPI-2) specification."""
|
|
|
|
toolchain = {'name': 'iccifort', 'version': '2016.0.109-GCC-4.9.3'}
|
|
|
|
sources = ['l_mpi_p_%(version)s.tgz']
|
|
|
|
checksums = ['aa4aaec41526aa5b244e531811877b01']
|
|
|
|
dontcreateinstalldir = 'True'
|
|
|
|
import os
|
|
license_file = os.path.join(os.getenv('HOME'), "licenses", "intel", "license.lic")
|
|
|
|
moduleclass = 'mpi'
|
|
|
|
# Salomon specific optimalization
|
|
modextravars = {
|
|
'I_MPI_CC': 'icc',
|
|
'I_MPI_CXX': 'icpc',
|
|
'I_MPI_FC': 'ifort',
|
|
'I_MPI_F77': 'ifort',
|
|
'I_MPI_F90': 'ifort',
|
|
'I_MPI_HYDRA_BOOTSTRAP': 'ssh',
|
|
'I_MPI_EXTRA_FILESYSTEM': 'enable',
|
|
'I_MPI_EXTRA_FILESYSTEM_LIST': 'lustre'
|
|
}
|
|
|
|
postinstallcmds = [
|
|
'ln -s %(installdir)s/lib64/libmpi.so %(installdir)s/lib64/libmpich.so',
|
|
'ln -s %(installdir)s/lib64/libmpigc4.so %(installdir)s/lib64/libmpichcxx.so',
|
|
'ln -s %(installdir)s/lib64/libmpigf.so %(installdir)s/lib64/libfmpich.so',
|
|
'ln -s %(installdir)s/lib64/libmpigf.so %(installdir)s/lib64/libmpichf90.so',
|
|
'ln -s %(installdir)s/lib64/libmpi.so %(installdir)s/lib64/libmpl.so',
|
|
'ln -s %(installdir)s/lib64/libmpi.so %(installdir)s/lib64/libopa.so'
|
|
]
|