-
Notifications
You must be signed in to change notification settings - Fork 3
/
make_slurm.py
93 lines (82 loc) · 2.91 KB
/
make_slurm.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
#!/usr/bin/env python
u"""
make_slurm.py
Yara Mohajerani
Make slurm scripts for GP for large data directories.
Calls run_prediction.py
"""
import os
import sys
import getopt
#-- main function
def main():
#-- Read the system arguments listed after the program
long_options=['DATA_DIR=','SLURM_DIR=','CODE_DIR=','NUM=','MODEL=','USER=','CLOBBER']
optlist,arglist = getopt.getopt(sys.argv[1:],'D:S:C:N:M:U:L',long_options)
#-- Set default settings
ddir = '/DFS-L/DATA/gl_ml/SENTINEL1_2018/Track007'
slurm_dir = '/DFS-L/DATA/gl_ml/slurm.dir'
code_dir = '/DFS-L/DATA/isabella/ymohajer/GL_learning'
num = 1500
CLOBBER = False
model_str = 'atrous_32init_drop0.2_customLossR727.dir'
user = 'ymohajer'
for opt, arg in optlist:
if opt in ("-D","--DATA_DIR"):
ddir = os.path.expanduser(arg)
elif opt in ("-S","--SLURM_DIR"):
slurm_dir = os.path.expanduser(arg)
elif opt in ("-C","--CODE_DIR"):
code_dir = os.path.expanduser(arg)
elif opt in ("-N","--NUM"):
num = int(arg)
elif opt in ("-M","--MODEL"):
model_str = arg
elif opt in ("-U","--USER"):
user = arg
elif opt in ("L","--CLOBBER"):
CLOBBER = True
#-- if ddir ends with '/', remove so we can get basename
if ddir.endswith('/'):
ddir = ddir[:-1]
#-- Get list of images
fileList = os.listdir(ddir)
#-- if not overwriting, only get files that don't already exist
if not CLOBBER:
#-- get list of exisiting files
existList = os.listdir(os.path.join(ddir,model_str))
exist_list = sorted([f.replace('coco','pred') for f in existList if (f.endswith('.tif') and f.startswith('pred'))])
#-- now get list of files that are not already exisiting
file_list = sorted([f for f in fileList if (f.endswith('.tif') and f.startswith('coco') and f not in exist_list)])
else:
file_list = sorted([f for f in fileList if (f.endswith('.tif') and f.startswith('coco'))])
#-- get total number of files
N = len(file_list)
print(N)
#-- open list of all jobs to run
list_fid = open(os.path.join(slurm_dir,'job_list_%s.sh'%os.path.basename(ddir)),'w')
#-- make slurm job for every 'num' files
cc = 0
while (cc < N):
outfile = os.path.join(slurm_dir,'%s_%i.sh'%(os.path.basename(ddir),cc))
fid = open(outfile,'w')
fid.write("#!/bin/bash\n")
fid.write("#SBATCH -N1\n")
fid.write("#SBATCH -n1\n")
fid.write("#SBATCH --mem=20G\n")
fid.write("#SBATCH -t0-06:00:00\n")
fid.write("#SBATCH -p sib2.9,nes2.8,has2.5,brd2.4,ilg2.3\n")
fid.write("#SBATCH --job-name=%s_%i\n"%(os.path.basename(ddir),cc))
fid.write("#SBATCH --mail-user=%s@uci.edu\n"%user)
fid.write("#SBATCH --mail-type=FAIL\n\n")
fid.write('source ~/miniconda3/bin/activate gl_env\n')
fid.write('python %s --DIR=%s --NUM=%i --START=%i --MODEL_DIR=%s\n'%\
(os.path.join(code_dir,'run_prediction.py'),ddir,num,cc,code_dir))
fid.close()
#-- add job to list
list_fid.write('nohup sbatch %s\n'%outfile)
cc += num
list_fid.close()
#-- run main program
if __name__ == '__main__':
main()