mirror of
https://code.it4i.cz/sccs/easyconfigs-it4i.git
synced 2025-04-08 07:52:11 +01:00

modified: archive/g/GROMACS/GROMACS-5.1.2-foss-2016a-hybrid-single-CUDA-7.5-PLUMED-2.3b.eb modified: archive/g/GROMACS/GROMACS-5.1.2-intel-2015b-hybrid-single-CUDA-7.5-PLUMED-2.2.1.eb modified: archive/g/GROMACS/GROMACS-5.1.2-intel-2015b-hybrid-single-cuda.eb modified: archive/g/GROMACS/GROMACS-5.1.2-intel-2016a-hybrid-single-cuda.eb modified: archive/p/PLUMED/PLUMED-2.3.0-foss-2016a.eb modified: e/EasyBuild/EasyBuild-4.1.0.eb modified: g/GROMACS/GROMACS-5.1.4-foss-2017a-hybrid-single-PLUMED.eb modified: l/libmatheval/libmatheval-1.1.8-foss-2017a.eb new file: o/OVITO/OVITO-3.0.0.628.eb new file: o/OVITO/OVITO-3.0.0.794-basic.eb modified: o/OpenMPI/OpenMPI-2.0.1-iccifort-2017.1.132-GCC-5.4.0-2.26.eb modified: o/OpenMPI/OpenMPI-2.0.1.eb modified: p/PSBLAS/PSBLAS-ext-1.0-4.eb modified: p/Py/Py-2.7.old.eb modified: p/pscom/pscom-5.0.48-1.eb modified: s/spGPU/spGPU-master.eb deleted: o/OVITO/OVITO-3.0.0.eb
66 lines
1.7 KiB
Plaintext
66 lines
1.7 KiB
Plaintext
easyblock = 'ConfigureMake'
|
|
|
|
name = 'OpenMPI'
|
|
version = '2.0.1'
|
|
|
|
homepage = 'http://www.open-mpi.org/'
|
|
description = """The Open MPI Project is an open source MPI-2 implementation."""
|
|
|
|
toolchain = SYSTEM
|
|
|
|
sources = [SOURCELOWER_TAR_GZ]
|
|
|
|
source_urls = [
|
|
'http://www.open-mpi.org/software/ompi/v%(version_major_minor)s/downloads',
|
|
]
|
|
|
|
dependencies = [
|
|
('hwloc', '1.11.4'),
|
|
('Java', '1.8.0_112', '', True)
|
|
]
|
|
|
|
configopts = '--with-threads=posix --enable-shared --enable-mpi-thread-multiple --with-verbs '
|
|
# suppress failure modes in relation to mpirun path
|
|
configopts += '--enable-mpirun-prefix-by-default '
|
|
configopts += '--with-hwloc=$EBROOTHWLOC ' # hwloc support
|
|
# statically link local_component, don't do dynamic loading
|
|
configopts += '--disable-dlopen '
|
|
configopts += '--with-tm=/opt/pbs/default ' # Enable PBS
|
|
configopts += '--enable-mpi-java ' # Java support RT#4090
|
|
|
|
# for PBS Pro 13
|
|
preconfigopts = 'export LIBS="-ldl" && '
|
|
|
|
# needed for --with-verbs
|
|
osdependencies = [('libibverbs-dev', 'libibverbs-devel'), ]
|
|
|
|
libs = [
|
|
"mpi_cxx",
|
|
"mpi_mpifh",
|
|
"mpi",
|
|
"ompitrace",
|
|
"open-pal",
|
|
"open-rte",
|
|
"vt",
|
|
"vt-hyb",
|
|
"vt-mpi",
|
|
"vt-mpi-unify"]
|
|
|
|
# InfiniBand
|
|
modextravars = {'OMPI_MCA_btl_openib_if_include': 'mlx4_0',
|
|
'OMPI_MCA_oob_tcp_if_include': '10.0.0.0/8',
|
|
}
|
|
|
|
sanity_check_paths = {
|
|
'files': [
|
|
"bin/%s" %
|
|
binfile for binfile in [
|
|
"ompi_info", "opal_wrapper", "orterun"]] + [
|
|
"lib/lib%s.%s" %
|
|
(libfile, SHLIB_EXT) for libfile in libs] + [
|
|
"include/%s.h" %
|
|
x for x in [
|
|
"mpi-ext", "mpif-config", "mpif", "mpi", "mpi_portable_platform"]], 'dirs': [""], }
|
|
|
|
moduleclass = 'mpi'
|