Skip to content
Snippets Groups Projects
Commit baaa8c87 authored by Peters, Wouter's avatar Peters, Wouter
Browse files

jobqueue added as configurable option

parent f1733ea0
Branches
No related tags found
No related merge requests found
......@@ -14,7 +14,7 @@ import subprocess
from da.baseclasses.platform import Platform
std_joboptions = {'jobname':'test', 'jobaccount':'co2', 'jobtype':'serial', 'jobshell':'/bin/sh', 'depends':'', 'jobtime':'24:00:00', 'jobinput':'/dev/null', 'jobnodes':'1', 'jobtasks':'', 'modulenetcdf':'netcdf/4.1.2', 'networkMPI':''}
std_joboptions = {'jobname':'test', 'jobaccount':'co2', 'jobtype':'serial', 'jobshell':'/bin/sh', 'depends':'', 'jobtime':'24:00:00', 'jobinput':'/dev/null', 'jobnodes':'1', 'jobtasks':'', 'modulenetcdf':'netcdf/4.1.2', 'networkMPI':'','jobqueue': 'normal'}
class CartesiusPlatform(Platform):
......@@ -84,7 +84,7 @@ class CartesiusPlatform(Platform):
"""## Please make your own platform specific template with your own keys and place it in a subfolder of the da package.\n """ + \
"""## \n""" + \
"""#SBATCH -J jobname \n""" + \
"""#SBATCH -p normal \n""" + \
"""#SBATCH -p jobqueue \n""" + \
"""#SBATCH -n jobnodes \n""" + \
"""#SBATCH -t jobtime \n""" + \
"""#SBATCH -o joblog \n""" + \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment