mirror of
https://code.it4i.cz/sccs/easyconfigs-it4i.git
synced 2025-04-17 12:10:50 +01:00
30 lines
941 B
Plaintext
30 lines
941 B
Plaintext
name = 'impi'
|
|
version = '4.1.1.036'
|
|
|
|
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': 'dummy', 'version': 'dummy'}
|
|
|
|
sources = ['l_mpi_p_%(version)s.tgz']
|
|
|
|
dontcreateinstalldir = 'True'
|
|
|
|
# license file
|
|
import os
|
|
license_file = os.path.join(os.getenv('HOME'), "licenses", "intel", "license.lic")
|
|
|
|
# set up all the mpi wrappers to work as expected with intel compilers (e.g. mpicc wraps icc not the default gcc)
|
|
# set_mpi_wrappers_all = 'True'
|
|
|
|
moduleclass = 'mpi'
|
|
|
|
# Salomon specific optimalization
|
|
modextravars = {
|
|
'I_MPI_HYDRA_BOOTSTRAP' : 'ssh',
|
|
'I_MPI_EXTRA_FILESYSTEM' : 'enable',
|
|
'I_MPI_EXTRA_FILESYSTEM_LIST' : 'lustre'
|
|
}
|