Skip to content
Snippets Groups Projects
Commit 968dbf19 authored by mattijs's avatar mattijs
Browse files

ENH: mpirunDebug: allow SYSTEMOPENMPI

parent 35f9a95d
No related branches found
No related tags found
No related merge requests found
...@@ -162,12 +162,14 @@ do ...@@ -162,12 +162,14 @@ do
procCmdFile="$PWD/processor${proc}.sh" procCmdFile="$PWD/processor${proc}.sh"
procLog="processor${proc}.log" procLog="processor${proc}.log"
geom="-geometry 120x20+$xpos+$ypos" geom="-geometry 120x20+$xpos+$ypos"
node=""
if [ "$WM_MPLIB" = OPENMPI ] case "$WM_MPLIB" in
then *OPENMPI)
node="-np 1 " node="-np 1 "
fi ;;
*)
node=""
esac
echo "#!/bin/sh" > $procCmdFile echo "#!/bin/sh" > $procCmdFile
case "$method" in case "$method" in
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment