From 6face5d6c1c438197278601425cef8c22c8bcdf6 Mon Sep 17 00:00:00 2001 From: edoapra Date: Wed, 5 Mar 2025 12:36:24 -0800 Subject: [PATCH 1/2] mpich 4.3.0 --- src/libext/mpich/build_mpich.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/libext/mpich/build_mpich.sh b/src/libext/mpich/build_mpich.sh index 125b702c3f..c547d7f2ac 100755 --- a/src/libext/mpich/build_mpich.sh +++ b/src/libext/mpich/build_mpich.sh @@ -3,7 +3,7 @@ source ../libext_utils/get_tgz.sh rm -rf mpich mpich-?.?.? #VERSION=3.4.2 #VERSION=4.0.2 -VERSION=4.2.2 +VERSION=4.3.0 #curl -L http://www.mpich.org/static/downloads/${VERSION}/mpich-${VERSION}.tar.gz -o mpich.tgz #curl -L https://github.com/pmodels/mpich/releases/download/v${VERSION}/mpich-${VERSION}.tar.gz -o mpich.tgz get_tgz https://github.com/pmodels/mpich/releases/download/v${VERSION}/mpich-${VERSION}.tar.gz mpich.tgz @@ -58,7 +58,9 @@ if [ $(uname -s) == "Darwin" ]; then fi fi echo HWLOC_FLAGS is $HWLOC_FLAGS -./configure --prefix=`pwd`/../.. --enable-fortran=all $SHARED_FLAGS --disable-cxx --enable-romio --enable-silent-rules --enable-fortran=all $HWLOC_FLAGS +./configure --prefix=`pwd`/../.. --enable-fortran=all $SHARED_FLAGS --disable-cxx --enable-romio --enable-silent-rules --enable-fortran=all \ + --disable-opencl --without-cuda --without-ze --without-hip \ + $HWLOC_FLAGS #./configure --prefix=`pwd`/../.. --enable-fortran=all $SHARED_FLAGS --disable-cxx --enable-romio --with-pm=gforker --with-device=ch3:nemesis --disable-cuda --disable-opencl --enable-silent-rules --enable-fortran=all if [[ "$?" != "0" ]]; then cat config.log From 91702c00f6117d2deff28539e5f8f432d90d771e Mon Sep 17 00:00:00 2001 From: edoapra Date: Wed, 5 Mar 2025 13:13:04 -0800 Subject: [PATCH 2/2] mpich options --- src/libext/mpich/build_mpich.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/libext/mpich/build_mpich.sh b/src/libext/mpich/build_mpich.sh index c547d7f2ac..f86c55535a 100755 --- a/src/libext/mpich/build_mpich.sh +++ b/src/libext/mpich/build_mpich.sh @@ -58,8 +58,9 @@ if [ $(uname -s) == "Darwin" ]; then fi fi echo HWLOC_FLAGS is $HWLOC_FLAGS -./configure --prefix=`pwd`/../.. --enable-fortran=all $SHARED_FLAGS --disable-cxx --enable-romio --enable-silent-rules --enable-fortran=all \ - --disable-opencl --without-cuda --without-ze --without-hip \ +./configure --prefix=`pwd`/../.. --enable-fortran=all $SHARED_FLAGS --disable-cxx --disable-romio --enable-silent-rules --enable-fortran=all \ + --without-slurm --with-pm=hydra \ + --without-cuda --without-ze --without-hip --without-hcoll \ $HWLOC_FLAGS #./configure --prefix=`pwd`/../.. --enable-fortran=all $SHARED_FLAGS --disable-cxx --enable-romio --with-pm=gforker --with-device=ch3:nemesis --disable-cuda --disable-opencl --enable-silent-rules --enable-fortran=all if [[ "$?" != "0" ]]; then