Skip to content

Commit

Permalink
Lowered time limit for jobs to 10 days due to slurm not allowing core…
Browse files Browse the repository at this point in the history
…s more than 10 days for now.
  • Loading branch information
dahlo committed Feb 8, 2024
1 parent c0f167e commit 7ff09d9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions darsync.py
Original file line number Diff line number Diff line change
Expand Up @@ -394,7 +394,7 @@ def gen_slurm_script(args):
#!/bin/bash -l
#SBATCH -A {slurm_account}
#SBATCH -M snowy
#SBATCH -t 30-00:00:00
#SBATCH -t 10-00:00:00
#SBATCH -p core
#SBATCH -n 1
#SBATCH -J darsync_{os.path.basename(os.path.abspath(local_dir))}
Expand All @@ -409,7 +409,7 @@ def gen_slurm_script(args):
script.write(f"""#!/bin/bash -l
#SBATCH -A {slurm_account}
#SBATCH -M snowy
#SBATCH -t 30-00:00:00
#SBATCH -t 10-00:00:00
#SBATCH -p core
#SBATCH -n 1
#SBATCH -J darsync_{os.path.basename(os.path.abspath(local_dir))}
Expand Down

0 comments on commit 7ff09d9

Please sign in to comment.