Skip to content

Commit

Permalink
update submit job script to not use exclusive
Browse files Browse the repository at this point in the history
Signed-off-by: vsoch <vsoch@users.noreply.github.com>
  • Loading branch information
vsoch committed Apr 5, 2022
1 parent fc3858a commit bdf49fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion submit_jobs.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,4 +101,4 @@
templated = template + "\n" + entry["command"]
with open(tmpfile, "w") as fd:
fd.writelines(templated)
os.system("sbatch --time 360 -A asi --out=%s --exclusive --err %s %s" % (outfile, outfile, tmpfile))
os.system("sbatch --time 360 -A asi --nodes 1 --ntasks 4 --out=%s --err %s %s" % (outfile, outfile, tmpfile))

0 comments on commit bdf49fa

Please sign in to comment.