Skip to content

Commit

Permalink
Just jobname for jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
mjaehn committed Jan 30, 2024
1 parent 4b01685 commit 3a65efe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config.py
Original file line number Diff line number Diff line change
Expand Up @@ -414,7 +414,7 @@ def create_sbatch_script(self, job_name):
walltime = getattr(self, 'walltime', {}).get(job_name, "00:30:00")
script_lines = [
'#!/usr/bin/env bash',
f'#SBATCH --job-name="{job_name}_{self.chunk_id}"',
f'#SBATCH --job-name={job_name}',
'#SBATCH --nodes=1',
f'#SBATCH --time={walltime}',
f'#SBATCH --output={self.logfile}',
Expand Down

0 comments on commit 3a65efe

Please sign in to comment.