Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

MPICH 4.3.0 #1091

Merged
merged 2 commits into from
Mar 6, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions src/libext/mpich/build_mpich.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -58,7 +58,10 @@ 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 --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
cat config.log
Expand Down