Skip to content

Commit 7a9381d

Browse files
committed
mpirun, on some systems, can print "helpful messages". Except they aren't
helpful for us trying to run automated systems with predictable behavior.
1 parent 4dddf69 commit 7a9381d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/psij/launchers/scripts/mpi_launch.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ pre_launch
1414

1515
set +e
1616
if [ "$IS_OPENMPI" == "1" ]; then
17-
mpirun --oversubscribe -n $_PSI_J_PROCESS_COUNT "$@" 1>$_PSI_J_STDOUT 2>$_PSI_J_STDERR <$_PSI_J_STDIN
17+
mpirun --oversubscribe -q -n $_PSI_J_PROCESS_COUNT "$@" 1>$_PSI_J_STDOUT 2>$_PSI_J_STDERR <$_PSI_J_STDIN
1818
else
1919
mpirun -n $_PSI_J_PROCESS_COUNT "$@" 1>$_PSI_J_STDOUT 2>$_PSI_J_STDERR <$_PSI_J_STDIN
2020
fi

0 commit comments

Comments
 (0)