Skip to content

Commit

Permalink
Add spaces for command line options in spheral_ats.py
Browse files Browse the repository at this point in the history
  • Loading branch information
ldowen committed Jan 21, 2025
1 parent 5ca0171 commit 5fd37c9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/spheral_ats.py
Original file line number Diff line number Diff line change
Expand Up @@ -158,14 +158,14 @@ def main():
mac_args = [f"--numNodes {numNodes}"]
timeLimit = timeLimit if timeLimit else 120
inAllocVars = ["SLURM_JOB_NUM_NODES", "SLURM_NNODES"]
launch_cmd = f"salloc --exclusive -N {numNodes} -t {timeLimit}"
launch_cmd = f"salloc --exclusive -N {numNodes} -t {timeLimit} "
elif any(x in hostname for x in blueos_machine_names):
blueOS = True
numNodes = numNodes if numNodes else 2
mac_args = ["--smpi_off", f"--numNodes {numNodes}"]
inAllocVars = ["LSB_MAX_NUM_PROCESSORS"]
timeLimit = timeLimit if timeLimit else 60
launch_cmd = f"bsub -nnodes {numNodes} -Is -XF -core_isolation 2 -alloc_flags atsdisable -W {timeLimit}"
launch_cmd = f"bsub -nnodes {numNodes} -Is -XF -core_isolation 2 -alloc_flags atsdisable -W {timeLimit} "
if (options.ciRun):
for i, j in ci_launch_flags.items():
if (i in hostname):
Expand Down

0 comments on commit 5fd37c9

Please sign in to comment.