-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathqsub.py
executable file
·94 lines (81 loc) · 3.04 KB
/
qsub.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
#!/usr/bin/env python
from argparse import ArgumentParser
from subprocess import check_call
from tempfile import NamedTemporaryFile
pbs = """\
#PBS -N %(jobname)s
#PBS -l walltime=%(walltime)s:00
#PBS -l select=%(nodes)d:ncpus=%(ppn)d:mem=15gb:sandyb=true
#PBS -l place=excl
#PBS -q %(queue)s
#PBS -m eba
#PBS -M %(email)s
echo Running in $PBS_O_WORKDIR
cd $PBS_O_WORKDIR
LOGFILE=%(jobname)s.${PBS_JOBID}.log
%(env)s
echo -n Started at
date
echo
echo Running %(script)s
echo
mpiexec python %(script)s.py -r 2>&1 | tee $LOGFILE
mpiexec python %(script)s.py %(args)s 2>&1 | tee $LOGFILE
echo -n Finished at
date
"""
def run(benchmark, template=None, nodes=1, queue='', email='', env='', args=[],
np=[1], save=False, run=False, jobname=None, walltime='01:00'):
"""Submit a batch job
:param benchmark: benchmark to run
:param template: template to create PBS script from
:param nodes: number of nodes to run for
:param queue: queue to submit to
:param email: email address to notifiy
:param env: env file to source
:param args: list of additional argument to pass to benchmark script
:param np: number of processes to run for
"""
if env:
with open(env) as f:
env = f.read()
d = {'script': benchmark,
'nodes': nodes,
'queue': queue,
'queue': queue,
'walltime': walltime,
'email': email,
'env': env,
'args': ' '.join(args)}
if template:
with open(template) as f:
template = f.read()
for n in np:
d['ppn'] = n
d['pnuma'] = (n + 1) / 2
d['ptotal'] = n * nodes
d['jobname'] = '%s%02d%02d' % ((jobname or benchmark)[:11], nodes, n)
with open(d['jobname'] + '.pbs', 'w') if save \
else NamedTemporaryFile(prefix=d['jobname']) as f:
f.write((template or pbs) % d)
f.flush()
if run:
check_call(['qsub', f.name])
if __name__ == '__main__':
p = ArgumentParser(description="Submit a batch job")
p.add_argument('--jobname', '-j', help="name for the job (defaults to benchmark name)")
p.add_argument('--template', '-t', help="template to create PBS script from")
p.add_argument('--queue', '-q', help="queue to submit to")
p.add_argument('--walltime', '-w', help="walltime required (HH:MM)")
p.add_argument('--nodes', '-n', type=int, help="number of nodes", default=1)
p.add_argument('--email', '-m',
help="email address to send status messages to")
p.add_argument('--env', '-e', help="environment script to source")
p.add_argument('--np', type=int, nargs='+', default=[1],
help="number of processes per node")
p.add_argument('--run', '-r', action='store_true', help='Submit the job')
p.add_argument('--save', '-s', action='store_true', help='Save the job script')
p.add_argument('benchmark', help="benchmark to run")
p.add_argument('args', help="arguments to pass to benchmarks script",
nargs="*")
run(**vars(p.parse_args()))