easyconfigs-it4i/o/OpenMPI/OpenMPI-3.1.4-GCC-10.2.0-CUDA-12.2.0.eb
Lukas Krupcik afe7bf8bae new file: a/ADIOS2/ADIOS2-2.7.0-gompi-2020d.eb
new file:   a/ANN/ANN-1.1.2-GCC-12.2.0.eb
	new file:   c/Cgicc/Cgicc-3.2.19-GCC-12.2.0.eb
	new file:   c/CoordgenLibs/CoordgenLibs-3.0.1-gompi-2022b.eb
	new file:   c/c-blosc/c-blosc-1.21.0-GCC-10.2.0.eb
	new file:   f/FastCGI/FastCGI-2.4.2-GCC-12.2.0.eb
	new file:   g/GDB/GDB-12.1-GCCcore-11.3.0.eb
	new file:   g/GDB/GDB-13.2-GCCcore-12.2.0.eb
	new file:   g/GMP/GMP-6.2.1.eb
	new file:   g/gompi/gompi-2020d.eb
	new file:   g/gperftools/gperftools-2.10-GCCcore-12.2.0.eb
	new file:   h/HDF5/HDF5-1.12.0-gompi-2020d.eb
	modified:   h/hwloc/hwloc-1.11.7-GCC-10.2.0.eb
	new file:   i/ISL/ISL-0.24-GCCcore-12.2.0.eb
	new file:   i/ISL/ISL-0.24.eb
	new file:   j/JsonCpp/JsonCpp-1.9.5-GCCcore-12.2.0.eb
	new file:   k/kim-api/kim-api-2.3.0-GCCcore-11.2.0.eb
	modified:   l/LAMMPS/LAMMPS-23Jun2022-foss-2021b-kokkos.eb
	new file:   l/LEMON/LEMON-1.3.1-GCC-12.2.0.eb
	new file:   m/MPC/MPC-1.2.1-GCCcore-12.2.0.eb
	new file:   m/MPC/MPC-1.2.1.eb
	new file:   m/MPFR/MPFR-4.1.0-GCCcore-12.2.0.eb
	new file:   m/maeparser/maeparser-1.3.0-gompi-2022b.eb
	new file:   m/makeinfo/makeinfo-6.8-GCCcore-12.2.0.eb
	new file:   o/OpenBabel/OpenBabel-3.1.1-gompi-2022b.eb
	new file:   o/OpenMPI/OpenMPI-3.1.4-GCC-10.2.0-CUDA-12.2.0.eb
	modified:   o/OpenMPI/OpenMPI-3.1.4-GCC-10.2.0.eb
	new file:   o/openPMD-api/openPMD-api-0.14.4-gompi-2020d.eb
	new file:   p/PNGwriter/PNGwriter-0.7.0-GCC-10.2.0.eb
	new file:   s/SWIG/SWIG-4.0.2-GCCcore-12.2.0.eb
2023-07-11 11:24:41 +02:00

59 lines
1.9 KiB
Plaintext

# IT4Innovations
# LK 2023
easyblock = 'ConfigureMake'
name = 'OpenMPI'
version = '3.1.4'
homepage = 'http://www.open-mpi.org/'
description = """The Open MPI Project is an open source MPI-2 implementation."""
toolchain = {'name': 'GCC', 'version': '10.2.0'}
import os
if os.environ.get("CLUSTERNAME") in ["KAROLINA"]:
toolchainopts = {'optarch': 'march=core-avx2'}
source_urls = [
'http://www.open-mpi.org/software/ompi/v%(version_major_minor)s/downloads']
sources = [SOURCELOWER_TAR_GZ]
checksums = ['a7c34ad052ea8201ed9e7389994069fe6996403beabdd2d711caf0532808156c']
dependencies = [
('hwloc', '1.11.7'),
('zlib', '1.2.11'),
('libxml2', '2.9.10'),
('UCX', '1.9.0'),
('CUDA', '12.0.0', '', True)
]
configopts = '--enable-shared --enable-mpi-thread-multiple --with-verbs '
configopts += '--enable-mpirun-prefix-by-default '
configopts += '--with-hwloc=$EBROOTHWLOC ' # hwloc support
configopts += '--with-tm=/opt/pbs ' # Enable PBS
configopts += '--enable-mpi-cxx ' # Enable building the C++ MPI bindings
configopts += '--with-ucx=$EBROOTUCX '
configopts += '--disable-builtin-atomics ' # RT35770
configopts += '--with-cuda=$EBROOTCUDACORE '
osdependencies = [('libibverbs-dev', 'libibverbs-devel', 'rdma-core-devel')]
local_libs = ["mpi_mpifh", "mpi", "ompitrace", "open-pal", "open-rte"]
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 local_libs] + [
"include/%s.h" %
x for x in [
"mpi-ext", "mpif-config", "mpif", "mpi", "mpi_portable_platform"]], 'dirs': [], }
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',
}
moduleclass = 'mpi'