File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 13
13
from ..common import format_list_to_string , file_dump_yaml
14
14
15
15
from . import queues , input
16
-
16
+
17
+
17
18
def __validate_job_options () -> None :
18
19
if not ARG ("mpi" ) and any ({ARG ("nodes" ) > 1 , ARG ("tasks_per_node" ) > 1 }):
19
20
raise MFCException ("RUN: Cannot run on more than one rank with --no-mpi." )
Original file line number Diff line number Diff line change @@ -119,7 +119,7 @@ def test():
119
119
# Some cases require a specific build of MFC for features like Chemistry,
120
120
# Analytically defined patches, and --case-optimization. Here, we build all
121
121
# the unique versions of MFC we need to run cases.
122
- if ARG ("rdma_mpi" ) == True :
122
+ if ARG ("rdma_mpi" ) and ARG ( "dry_run" ) :
123
123
ARGS ()["test_all" ] = False
124
124
125
125
codes = [PRE_PROCESS , SIMULATION ] + ([POST_PROCESS ] if ARG ('test_all' ) else [])
You can’t perform that action at this time.
0 commit comments