From 558011c4a263031de87b71850719be9c8ac5ef3c Mon Sep 17 00:00:00 2001 From: Soren Rasmussen Date: Fri, 6 Sep 2024 10:27:02 -0600 Subject: [PATCH] Update scm/src/run_scm.py New default to work on Hera. Derecho will require --mpi_command='' Co-authored-by: Michael Kavulich --- scm/src/run_scm.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scm/src/run_scm.py b/scm/src/run_scm.py index 0579a9889..eefb98310 100755 --- a/scm/src/run_scm.py +++ b/scm/src/run_scm.py @@ -121,7 +121,7 @@ parser.add_argument('--stop_on_error', help='when running multiple SCM runs, stop on first error', required=False, action='store_true') parser.add_argument('-v', '--verbose', help='set logging level to debug and write log to file', action='count', default=0) parser.add_argument('-f', '--file', help='name of file where SCM runs are defined') -parser.add_argument('--mpi_command', help='command used to invoke the executable via MPI (including options)', required=False, default='') +parser.add_argument('--mpi_command', help='command used to invoke the executable via MPI (including options)', required=False, default='mpirun -np 1') ############################################################################### # Functions and subroutines #