Skip to content

Commit

Permalink
#252 Handle openmpi as the mpi lib detected
Browse files Browse the repository at this point in the history
Signed-off-by: Dimitri Baron <[email protected]>
  • Loading branch information
barondim authored and rosiereflo committed Jul 23, 2024
1 parent 75cd3b3 commit dfb00a8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion util/envDynawoAlgorithms.sh
Original file line number Diff line number Diff line change
Expand Up @@ -829,7 +829,9 @@ deploy_dynawo_algorithms() {
for lib in ${mpi_lib}; do
cp ${lib}* lib/.
done
cp $(dirname $MPIRUN_PATH)/hydra_pmi_proxy bin/.
if [ -n "$MPIRUN_PATH" ] && [ -n "$(readlink -f $MPIRUN_PATH | grep hydra)" ]; then
cp $(dirname $MPIRUN_PATH)/hydra_pmi_proxy bin/.
fi
fi
fi

Expand Down

0 comments on commit dfb00a8

Please sign in to comment.