Skip to content

Commit

Permalink
Add host suffix as key
Browse files Browse the repository at this point in the history
  • Loading branch information
lukemartinlogan committed Oct 26, 2023
1 parent 3c4e6dc commit 7546b96
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jarvis_util/shell/slurm_exec.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ class SlurmExecInfo(ExecInfo):
def __init__(self, job_name=None, num_nodes=1, **kwargs):
super().__init__(exec_type=ExecType.SLURM, **kwargs)
allowed_options = ['job_name', 'num_nodes', 'cpus_per_task', 'time', 'partition', 'mail_type',
'mail_user', 'mem', 'gres', 'exclusive']
'mail_user', 'mem', 'gres', 'exclusive', 'host_suffix']
self.keys += allowed_options
# We use ppn, and the output and error file from the base Exec Info
for key in allowed_options:
Expand Down

0 comments on commit 7546b96

Please sign in to comment.