Compare commits
4 commits
1474a6b7b1
...
9aa5308a0a
Author | SHA1 | Date | |
---|---|---|---|
9aa5308a0a | |||
3b90aef947 | |||
3a4da5eeb5 | |||
bba518d717 |
4 changed files with 183 additions and 1 deletions
64
packages/mpi/openmpi/openmpi-4.1.6
Executable file
64
packages/mpi/openmpi/openmpi-4.1.6
Executable file
|
@ -0,0 +1,64 @@
|
||||||
|
#!/bin/sh
|
||||||
|
# sit class file
|
||||||
|
#
|
||||||
|
# Christoph Niethammer <niethammer@hlrs.de> (C) 2023
|
||||||
|
#
|
||||||
|
|
||||||
|
CATEGORY="mpi"
|
||||||
|
PACKAGE="openmpi"
|
||||||
|
VERSION="4.1.6"
|
||||||
|
URL="http://www.open-mpi.org"
|
||||||
|
INSTALLER="Christoph Niethammer <niethammer@hlrs.de>"
|
||||||
|
|
||||||
|
# Archive A and package name P
|
||||||
|
A="$PACKAGE-$VERSION.tar.bz2"
|
||||||
|
P="$PACKAGE-$VERSION"
|
||||||
|
HASH_MD5=
|
||||||
|
HASH_SHA1=
|
||||||
|
|
||||||
|
# Other interesting configure options:
|
||||||
|
# --enable-mpi-threads
|
||||||
|
# --enable-progress-threads
|
||||||
|
# --enable-mpi-fortran=usempif08 \
|
||||||
|
# --with-devel-headers \
|
||||||
|
# --enable-contrib-no-build=vt
|
||||||
|
# --enable-static \
|
||||||
|
# --enable-shared \
|
||||||
|
# FFLAGS=-I/ \
|
||||||
|
CONFIGURE_OPTS="
|
||||||
|
--without-verbs \
|
||||||
|
--with-io-romio-flags=--with-file-system=ufs+nfs+lustre \
|
||||||
|
"
|
||||||
|
|
||||||
|
if [ "$OMPI_ENABLE_SPC" == "1" ] ; then
|
||||||
|
echo "Building with Open MPI's SPC"
|
||||||
|
CONFIGURE_OPTS+=" --enable-spc"
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ "$COMPILER" == "aocc" ] ; then
|
||||||
|
CONFIGURE_OPTS+=" --enable-mpi-ext=no"
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ ! -z "$UCX_DIR" ] ; then
|
||||||
|
CONFIGURE_OPTS+=" --with-ucx=$UCX_DIR"
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ ! -z "$HCOLL_DIR" ] ; then
|
||||||
|
CONFIGURE_OPTS+=" --with-hcoll=$HCOLL_DIR"
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ ! -z "$KNEM_DIR" ] ; then
|
||||||
|
CONFIGURE_OPTS+=" --with-knem=$KNEM_DIR"
|
||||||
|
fi
|
||||||
|
if [ ! -z "$PBS_DIR" ] ; then
|
||||||
|
CONFIGURE_OPTS+=" --with-tm=$PBS_DIR"
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ ! -z $CUDA_DIR ] ; then
|
||||||
|
ucx_info -b | grep -e "HAVE_CUDA *1" >/dev/null || sit_fail "UCX must be built with CUDA support"
|
||||||
|
CONFIGURE_OPTS+=" --with-cuda=$CUDA_DIR"
|
||||||
|
fi
|
||||||
|
|
||||||
|
src_pretest() {
|
||||||
|
make check
|
||||||
|
}
|
|
@ -6,7 +6,7 @@
|
||||||
|
|
||||||
CATEGORY="mpi"
|
CATEGORY="mpi"
|
||||||
PACKAGE="openmpi"
|
PACKAGE="openmpi"
|
||||||
VERSION="5.0.0rc11"
|
VERSION="5.0.0"
|
||||||
URL="http://www.open-mpi.org"
|
URL="http://www.open-mpi.org"
|
||||||
INSTALLER="Christoph Niethammer <niethammer@hlrs.de>"
|
INSTALLER="Christoph Niethammer <niethammer@hlrs.de>"
|
||||||
|
|
59
packages/mpi/openmpi/openmpi-5.0.2
Executable file
59
packages/mpi/openmpi/openmpi-5.0.2
Executable file
|
@ -0,0 +1,59 @@
|
||||||
|
#!/bin/sh
|
||||||
|
# sit class file
|
||||||
|
#
|
||||||
|
# Christoph Niethammer <niethammer@hlrs.de> (C) 2024
|
||||||
|
#
|
||||||
|
|
||||||
|
CATEGORY="mpi"
|
||||||
|
PACKAGE="openmpi"
|
||||||
|
VERSION="5.0.2"
|
||||||
|
URL="http://www.open-mpi.org"
|
||||||
|
INSTALLER="Christoph Niethammer <niethammer@hlrs.de>"
|
||||||
|
|
||||||
|
# Archive A and package name P
|
||||||
|
A="$PACKAGE-$VERSION.tar.bz2"
|
||||||
|
P="$PACKAGE-$VERSION"
|
||||||
|
HASH_MD5=
|
||||||
|
HASH_SHA1=
|
||||||
|
|
||||||
|
# Other interesting configure options:
|
||||||
|
# --enable-mpi-threads
|
||||||
|
# --enable-progress-threads
|
||||||
|
# --enable-mpi-fortran=usempif08 \
|
||||||
|
# --with-devel-headers \
|
||||||
|
# --enable-contrib-no-build=vt
|
||||||
|
# --enable-static \
|
||||||
|
# --enable-shared \
|
||||||
|
# FFLAGS=-I/ \
|
||||||
|
CONFIGURE_OPTS="
|
||||||
|
--without-verbs \
|
||||||
|
"
|
||||||
|
|
||||||
|
if [ "$COMPILER" == "aocc" ] ; then
|
||||||
|
CONFIGURE_OPTS+=" --enable-mpi-ext=no"
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ ! -z "$UCX_DIR" ] ; then
|
||||||
|
CONFIGURE_OPTS+=" --with-ucx=$UCX_DIR"
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ ! -z "$HCOLL_DIR" ] ; then
|
||||||
|
CONFIGURE_OPTS+=" --with-hcoll=$HCOLL_DIR"
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ ! -z "$KNEM_DIR" ] ; then
|
||||||
|
CONFIGURE_OPTS+=" --with-knem=$KNEM_DIR"
|
||||||
|
fi
|
||||||
|
if [ ! -z "$PBS_DIR" ] ; then
|
||||||
|
CONFIGURE_OPTS+=" --with-tm=$PBS_DIR"
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ ! -z $CUDA_DIR ] ; then
|
||||||
|
[ -z "$UCX_DIR" ] && sit_fail "Have to be configured with external UCX"
|
||||||
|
$UCX_DIR/bin/ucx_info -b | grep -e "HAVE_CUDA *1" >/dev/null || sit_fail "UCX must be built with CUDA support"
|
||||||
|
CONFIGURE_OPTS+=" --with-cuda=$CUDA_DIR"
|
||||||
|
fi
|
||||||
|
|
||||||
|
src_pretest() {
|
||||||
|
make check
|
||||||
|
}
|
59
packages/mpi/openmpi/openmpi-5.0.3
Executable file
59
packages/mpi/openmpi/openmpi-5.0.3
Executable file
|
@ -0,0 +1,59 @@
|
||||||
|
#!/bin/sh
|
||||||
|
# sit class file
|
||||||
|
#
|
||||||
|
# Christoph Niethammer <niethammer@hlrs.de> (C) 2024
|
||||||
|
#
|
||||||
|
|
||||||
|
CATEGORY="mpi"
|
||||||
|
PACKAGE="openmpi"
|
||||||
|
VERSION="5.0.3"
|
||||||
|
URL="http://www.open-mpi.org"
|
||||||
|
INSTALLER="Christoph Niethammer <niethammer@hlrs.de>"
|
||||||
|
|
||||||
|
# Archive A and package name P
|
||||||
|
A="$PACKAGE-$VERSION.tar.bz2"
|
||||||
|
P="$PACKAGE-$VERSION"
|
||||||
|
HASH_MD5=
|
||||||
|
HASH_SHA1=
|
||||||
|
|
||||||
|
# Other interesting configure options:
|
||||||
|
# --enable-mpi-threads
|
||||||
|
# --enable-progress-threads
|
||||||
|
# --enable-mpi-fortran=usempif08 \
|
||||||
|
# --with-devel-headers \
|
||||||
|
# --enable-contrib-no-build=vt
|
||||||
|
# --enable-static \
|
||||||
|
# --enable-shared \
|
||||||
|
# FFLAGS=-I/ \
|
||||||
|
CONFIGURE_OPTS="
|
||||||
|
--without-verbs \
|
||||||
|
"
|
||||||
|
|
||||||
|
if [ "$COMPILER" == "aocc" ] ; then
|
||||||
|
CONFIGURE_OPTS+=" --enable-mpi-ext=no"
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ ! -z "$UCX_DIR" ] ; then
|
||||||
|
CONFIGURE_OPTS+=" --with-ucx=$UCX_DIR"
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ ! -z "$HCOLL_DIR" ] ; then
|
||||||
|
CONFIGURE_OPTS+=" --with-hcoll=$HCOLL_DIR"
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ ! -z "$KNEM_DIR" ] ; then
|
||||||
|
CONFIGURE_OPTS+=" --with-knem=$KNEM_DIR"
|
||||||
|
fi
|
||||||
|
if [ ! -z "$PBS_DIR" ] ; then
|
||||||
|
CONFIGURE_OPTS+=" --with-tm=$PBS_DIR"
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ ! -z $CUDA_DIR ] ; then
|
||||||
|
[ -z "$UCX_DIR" ] && sit_fail "Have to be configured with external UCX"
|
||||||
|
$UCX_DIR/bin/ucx_info -b | grep -e "HAVE_CUDA *1" >/dev/null || sit_fail "UCX must be built with CUDA support"
|
||||||
|
CONFIGURE_OPTS+=" --with-cuda=$CUDA_DIR"
|
||||||
|
fi
|
||||||
|
|
||||||
|
src_pretest() {
|
||||||
|
make check
|
||||||
|
}
|
Loading…
Reference in a new issue