easyconfigs-it4i/o/OpenMPI/OpenMPI-5.0.5-GCC-14.2.0.eb
Lukas Krupcik 65417ffe00 new file: a/Autoconf/Autoconf-2.72-GCCcore-14.2.0.eb
new file:   a/Autotools/Autotools-20231222-GCCcore-14.2.0.eb
	new file:   b/bzip2/bzip2-1.0.8-GCCcore-14.2.0.eb
	new file:   c/CMake/CMake-3.30.5-GCCcore-14.2.0.eb
	new file:   c/cURL/cURL-8.7.1-GCCcore-14.2.0.eb
	new file:   h/hwloc/hwloc-2.10.0-GCCcore-14.2.0.eb
	new file:   l/libarchive/libarchive-3.7.4-GCCcore-14.2.0.eb
	new file:   n/NVHPC/NVHPC-24.3.eb
	new file:   n/ncurses/ncurses-6.5-GCCcore-14.2.0.eb
	new file:   n/numactl/numactl-2.0.18-GCCcore-13.3.0.eb
	new file:   o/OpenMPI/OpenMPI-4.1.6-NVHPC-24.3.eb
	new file:   o/OpenMPI/OpenMPI-5.0.5-GCC-14.2.0.eb
	new file:   p/Perl/Perl-5.38.2-GCCcore-14.2.0.eb
	new file:   p/pkgconf/pkgconf-2.2.0-GCCcore-14.2.0.eb
	new file:   u/UCC/UCC-1.2.0-GCCcore-13.2.0.eb
	modified:   u/UCX/UCX-1.15.0-GCCcore-13.2.0.eb
	new file:   x/XZ/XZ-5.4.5-GCCcore-14.2.0.eb
2024-10-18 11:04:27 +02:00

75 lines
2.2 KiB
Plaintext

# IT4Innovations
# LK 2024
name = 'OpenMPI'
version = '5.0.5'
homepage = 'https://www.open-mpi.org/'
description = """The Open MPI Project is an open source MPI-3 implementation."""
toolchain = {'name': 'GCC', 'version': '14.2.0'}
source_urls = ['https://www.open-mpi.org/software/ompi/v%(version_major_minor)s/downloads']
sources = [SOURCELOWER_TAR_BZ2]
checksums = [
{'openmpi-5.0.5.tar.bz2': 'ee46ad8eeee2c3ff70772160bff877cbf38c330a0bc3b3ddc811648b3396698f'},
]
builddependencies = [
('pkgconf', '2.2.0'),
('Perl', '5.38.2'),
('Autotools', '20231222'),
]
dependencies = [
('zlib', '1.2.12'),
('hwloc', '2.8.0'),
('libevent', '2.1.12'),
('UCX', '1.14.1'),
('libfabric', '1.16.1'),
('PMIx', '4.2.6'),
('UCC', '1.1.0'),
]
# Update configure to include changes from the "internal-cuda" patch
# by running a subset of autogen.pl sufficient to achieve this
# without doing the full, long-running regeneration.
preconfigopts = ' && '.join([
'cd config',
'autom4te --language=m4sh opal_get_version.m4sh -o opal_get_version.sh',
'cd ..',
'autoconf',
'autoheader',
'aclocal',
'automake',
''
])
configopts = '--enable-shared --enable-mpi-thread-multiple --with-verbs '
configopts += '--enable-mpirun-prefix-by-default '
configopts += '--with-hwloc=$EBROOTHWLOC ' # hwloc support
configopts += '--with-slurm ' # Enable slurm
configopts += '--enable-mpi-cxx ' # Enable building the C++ MPI bindings
configopts += '--with-ucx=$EBROOTUCX '
import os
if os.environ.get("CLUSTERNAME") in ["BARBORA"]:
modextravars = {'OMPI_MCA_btl_openib_if_include': 'mlx5_0',
'OMPI_MCA_btl_tcp_if_include': '10.33.4.0/24',
'OMPI_MCA_orte_base_help_aggregate': '0',
'SLURM_MPI_TYPE': 'pmix_v4',
}
elif os.environ.get("CLUSTERNAME") in ["KAROLINA"]:
modextravars = {'OMPI_MCA_btl_openib_if_include': 'mlx5_0',
'OMPI_MCA_orte_base_help_aggregate': '0',
'SLURM_MPI_TYPE': 'pmix_v4',
}
else:
modextravars = {'OMPI_MCA_btl_openib_if_include': 'mlx4_0',
'OMPI_MCA_oob_tcp_if_include': '10.0.0.0/8',
'SLURM_MPI_TYPE': 'pmix_v4',
}
moduleclass = 'mpi'