-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathsearch_file_cluster.py
executable file
·398 lines (370 loc) · 17.3 KB
/
search_file_cluster.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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
#!/usr/bin/env python3
##########################################################################
#
# This file is part of Proverbot9001.
#
# Proverbot9001 is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# Proverbot9001 is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Proverbot9001. If not, see <https://www.gnu.org/licenses/>.
#
# Copyright 2019 Alex Sanchez-Stern and Yousef Alhessi
#
##########################################################################
import argparse
import os
import time
import sys
import json
import subprocess
import signal
import shutil
import functools
import re
from pathlib import Path
from datetime import datetime, timedelta
from typing import List, NamedTuple, Dict, Any
from threading import Thread
from tqdm import tqdm
from search_file import (add_args_to_parser,
get_already_done_jobs, remove_already_done_jobs,
project_dicts_from_args, format_arg_value)
from search_worker import ReportJob
import util
details_css = "details.css"
details_javascript = "search-details.js"
start_time = datetime.now()
def main(arg_list: List[str]) -> None:
global start_time
arg_parser = argparse.ArgumentParser()
add_args_to_parser(arg_parser)
arg_parser.add_argument("--num-workers", default=32, type=int)
arg_parser.add_argument("--workers-output-dir", default=Path("output"),
type=Path)
arg_parser.add_argument("--worker-timeout", default="6:00:00")
arg_parser.add_argument("-p", "--partition", default="defq")
arg_parser.add_argument("--mem", default="2G")
args = arg_parser.parse_args(arg_list)
if args.filenames[0].suffix == ".json":
assert args.splits_file == None
assert len(args.filenames) == 1
args.splits_file = args.filenames[0]
args.filenames = []
base = Path(os.path.dirname(os.path.abspath(__file__)))
assert Path(args.prelude).exists(), "Prelude directory doesn't exist!"
os.makedirs(str(args.output_dir), exist_ok=True)
project_dicts = project_dicts_from_args(args)
for project_dict in project_dicts:
project_output_dir = args.output_dir / project_dict["project_name"]
if len(project_dict["test_files"]) == 0:
continue
os.makedirs(str(project_output_dir), exist_ok=True)
for filename in [details_css, details_javascript]:
destpath = args.output_dir / project_dict["project_name"] / filename
if not destpath.exists():
srcpath = base.parent / 'reports' / filename
shutil.copyfile(srcpath, destpath)
start_time = datetime.now()
if args.resume:
solved_jobs = get_already_done_jobs(args)
try:
with open(args.output_dir / "time_so_far.txt", 'r') as f:
time_taken = util.read_time_taken(f.read())
start_time = datetime.now() - time_taken
except FileNotFoundError:
assert len(solved_jobs) == 0, "Trying to resume but can't find a time record!"
pass
else:
remove_already_done_jobs(args)
solved_jobs = []
os.makedirs(str(args.output_dir / args.workers_output_dir), exist_ok=True)
get_all_jobs_cluster(args)
with open(args.output_dir / "all_jobs.txt") as f:
jobs = [ReportJob(*json.loads(line)) for line in f]
assert len(jobs) > 0
if len(solved_jobs) < len(jobs):
if args.just_print_jobs:
for job in jobs:
if job not in solved_jobs:
print(job)
sys.exit(0)
setup_jobsstate(args.output_dir, jobs, solved_jobs)
dispatch_workers(args, min(args.num_workers, len(jobs) - len(solved_jobs)), arg_list)
with util.sighandler_context(signal.SIGINT, functools.partial(interrupt_early, args)):
show_progress(args)
cancel_workers(args)
write_time(args)
else:
assert len(solved_jobs) == len(jobs), \
f"There are {len(solved_jobs)} solved jobs but only {len(jobs)} jobs total detected"
if args.generate_report:
with open(args.output_dir / "args.json", 'w') as f:
json.dump({k: format_arg_value(v) for k, v in vars(args).items()}, f)
cur_dir = os.path.realpath(os.path.dirname(__file__))
output_files = []
for project_dict in project_dicts:
if len(project_dict["test_files"]) == 0:
continue
if project_dict['project_name'] == ".":
report_output_name = "report.out"
else:
report_output_name = f"{project_dict['project_name']}-report.out"
full_output_filename = str(args.output_dir / args.workers_output_dir / report_output_name)
output_files.append(full_output_filename)
command = [f"{cur_dir}/sbatch-retry.sh",
"-o", full_output_filename,
"-t", str(args.worker_timeout),
"-J", "proverbot9001-report-worker",
f"{cur_dir}/search_report.sh",
str(args.output_dir),
"-p", project_dict['project_name']]
subprocess.run(command, stdout=subprocess.DEVNULL)
with util.sighandler_context(signal.SIGINT,
functools.partial(interrupt_report_early, args)):
show_report_progress(args.output_dir, project_dicts, output_files)
subprocess.run([f"{cur_dir}/sbatch-retry.sh",
"-o", str(args.output_dir / args.workers_output_dir
/ "index-report.out"),
"-J", "proverbot9001-report-worker",
f"{cur_dir}/search_report.sh",
str(args.output_dir),
"-i"], stdout=subprocess.DEVNULL)
print("Generating report index...")
while True:
indexes_generated = int(subprocess.check_output(
f"find {args.output_dir} -name 'index.html' | wc -l",
shell=True, text=True))
if indexes_generated > 0:
break
else:
time.sleep(0.2)
def get_all_jobs_cluster(args: argparse.Namespace) -> None:
if (args.output_dir / "all_jobs.txt").exists():
return
project_dicts = project_dicts_from_args(args)
projfiles = [(project_dict["project_name"], filename)
for project_dict in project_dicts
for filename in project_dict["test_files"]]
with (args.output_dir / "all_jobs.txt.partial").open("w") as f:
pass
with (args.output_dir / "proj_files.txt").open("w") as f:
for projfile in projfiles:
print(json.dumps(projfile), file=f)
with (args.output_dir / "proj_files_taken.txt").open("w") as f:
pass
with (args.output_dir / "proj_files_scanned.txt").open("w") as f:
pass
worker_args = [f"--prelude={args.prelude}",
f"--output={args.output_dir}",
"proj_files.txt",
"proj_files_taken.txt",
"proj_files_scanned.txt",
"all_jobs.txt.partial"]
if args.include_proof_relevant:
worker_args.append("--include-proof-relevant")
if args.proof:
worker_args.append(f"--proof={args.proof}")
elif args.proofs_file:
worker_args.append(f"--proofs-file={str(args.proofs_file)}")
cur_dir = os.path.realpath(os.path.dirname(__file__))
num_job_workers = min(len(projfiles), args.num_workers-1)
subprocess.run([f"{cur_dir}/sbatch-retry.sh",
"-o", str(args.output_dir / args.workers_output_dir /
"file-scanner-%a.out"),
f"--array=0-{num_job_workers}",
f"{cur_dir}/job_getting_worker.sh"] + worker_args)
threads = [Thread(target=follow_and_print, args=
(str(args.output_dir / args.workers_output_dir / f"file-scanner-{idx}.out"),))
for idx in range(num_job_workers)]
for t in threads:
t.daemon = True
t.start()
with tqdm(desc="Getting jobs", total=len(projfiles), dynamic_ncols=True) as bar:
num_files_scanned = 0
while num_files_scanned < len(projfiles):
with (args.output_dir / "proj_files_scanned.txt").open('r') as f:
new_files_scanned = len([line for line in f])
bar.update(new_files_scanned - num_files_scanned)
num_files_scanned = new_files_scanned
time.sleep(0.2)
close_follows = True
os.rename(args.output_dir / "all_jobs.txt.partial",
args.output_dir / "all_jobs.txt")
def setup_jobsstate(output_dir: Path, all_jobs: List[ReportJob],
solved_jobs: List[ReportJob]) -> None:
with (output_dir / "taken.txt").open("w") as f:
pass
with (output_dir / "jobs.txt").open("w") as f:
for job in all_jobs:
if job not in solved_jobs:
print(json.dumps(job), file=f)
print("", end="", flush=True, file=f)
def dispatch_workers(args: argparse.Namespace, num_workers: int, rest_args: List[str]) -> None:
with (args.output_dir / "num_workers_dispatched.txt").open("w") as f:
print(num_workers, file=f)
with (args.output_dir / "workers_scheduled.txt").open("w") as f:
pass
cur_dir = os.path.realpath(os.path.dirname(__file__))
num_workers_left = num_workers
# For some reason it looks like the maximum job size array is 1001 for
# slurm, so we're going to use batches of 1000
while num_workers_left > 0:
worker_name = f"proverbot9001-worker-{args.output_dir}"
num_dispatching_workers = min(num_workers_left, 1000)
# If you have a different cluster management software, that still allows
# dispatching jobs through the command line and uses a shared filesystem,
# modify this line.
subprocess.run([f"{cur_dir}/sbatch-retry.sh",
"-J", worker_name,
"-p", args.partition,
"-t", str(args.worker_timeout),
"--cpus-per-task", str(args.num_threads),
"-o", str(args.output_dir / args.workers_output_dir
/ "worker-%a.out"),
"--mem", args.mem,
f"--array=0-{num_dispatching_workers-1}",
f"{cur_dir}/search_file_cluster_worker.sh"] + rest_args)
num_workers_left -= num_dispatching_workers
def write_time(args: argparse.Namespace) -> None:
with open(args.output_dir / "time_so_far.txt", 'w') as f:
time_taken = datetime.now() - start_time
print(str(time_taken), file=f)
def interrupt_early(args: argparse.Namespace, *rest_args) -> None:
write_time(args)
cancel_workers(args)
sys.exit()
def cancel_workers(args: argparse.Namespace) -> None:
worker_name = f"proverbot9001-worker-{args.output_dir}"
subprocess.run([f"scancel -u $USER -n {worker_name}"], shell=True)
def interrupt_report_early(args: argparse.Namespace, *rest_args) -> None:
subprocess.run(["scancel -u $USER -n proverbot9001-report-worker"], shell=True)
sys.exit()
def show_progress(args: argparse.Namespace) -> None:
with (args.output_dir / "all_jobs.txt").open('r') as f:
all_jobs = [ReportJob(*json.loads(l)) for l in f]
with (args.output_dir / "num_workers_dispatched.txt").open('r') as f:
num_workers_total = int(f.read())
with (args.output_dir / "workers_scheduled.txt").open('r') as f:
workers_scheduled = list(f)
jobs_done = get_already_done_jobs(args)
num_workers_alive = 0
crashed_workers: List[int] = []
with tqdm(desc="Jobs finished", total=len(all_jobs), initial=len(jobs_done), dynamic_ncols=True) as bar, \
tqdm(desc="Workers scheduled", total=num_workers_total, initial=len(workers_scheduled), dynamic_ncols=True) as wbar:
while len(jobs_done) < len(all_jobs):
new_workers_alive = [int(wid) for wid in
subprocess.check_output(
f"squeue -r -u$USER -h -n proverbot9001-worker-{args.output_dir} -o%K",
shell=True, text=True).strip().split("\n")
if wid != ""]
time.sleep(0.2)
new_jobs_done = get_already_done_jobs(args)
bar.update(len(new_jobs_done) - len(jobs_done))
jobs_done = new_jobs_done
# Check for newly crashed workers
for worker_id in range(num_workers_total):
# Skip any living worker
if worker_id in new_workers_alive:
continue
# Skip any worker for which we've already reported a crash
if worker_id in crashed_workers:
continue
# Skip any worker that hasn't started yet, and get the jobs taken by workers that did.
try:
with (args.output_dir / f"worker-{worker_id}-taken.txt").open('r') as f:
taken_by_worker = [ReportJob(*json.loads(l)) for l in f]
except FileNotFoundError:
continue
jobs_left_behind = 0
for job in all_jobs:
if job not in jobs_done and job in taken_by_worker:
jobs_left_behind += 1
if jobs_left_behind > 0:
util.eprint(f"Worker {worker_id} crashed! Left behind {jobs_left_behind} unfinished jobs")
crashed_workers.append(worker_id)
if len(new_workers_alive) == 0:
time.sleep(1)
if len(jobs_done) < len(all_jobs):
util.eprint("All workers exited, but jobs aren't done!")
write_time(args)
sys.exit(1)
with (args.output_dir / "workers_scheduled.txt").open('r') as f:
new_workers_scheduled = list(f)
wbar.update(len(new_workers_scheduled) - len(workers_scheduled))
workers_scheduled = new_workers_scheduled
def follow_and_print(filename: str) -> None:
global close_follows
close_follows = False
while not Path(filename).exists():
time.sleep(0.1)
with open(filename, 'r') as f:
while True:
line = f.readline()
if "UserWarning: TorchScript" in line or "warnings.warn" in line:
continue
if line.strip() != "":
print(line, end="")
if close_follows:
break
time.sleep(0.01)
close_follows: bool
def follow_with_progress(filename: str, bar: tqdm, bar_prompt: str ="Report Files") -> None:
global close_follows
close_follows = False
progress = 0
set_total = False
while not Path(filename).exists():
time.sleep(0.1)
with open(filename, 'r') as f:
while True:
line = f.readline()
if "UserWarning: TorchScript" in line or "warnings.warn" in line:
continue
if bar_prompt + ":" in line:
new_progress = int(re.match(".*(\d+)/\d+", line).group(1))
if not set_total:
total = int(re.match(".*\d+/(\d+)", line).group(1))
bar.total = total
bar.refresh()
set_total = True
if new_progress > progress:
bar.update(new_progress - progress)
progress = new_progress
continue
if line.strip() != "":
bar.write(line, end="")
if close_follows:
break
time.sleep(0.01)
def show_report_progress(report_dir: Path, project_dicts: List[Dict[str, Any]], output_files: List[str]) -> None:
test_projects_total = len([d for d in project_dicts if len(d["test_files"]) > 0])
num_projects_done = 0
with tqdm(desc="Project reports generated", total=test_projects_total) as bar:
bars = [tqdm(desc=(project_dict["project_name"]
if len(project_dicts) > 1 else "Report") + " files")
for idx, (project_dict, _)
in enumerate(zip(project_dicts, output_files))]
threads = [Thread(target=follow_with_progress, args=(filename,bar)) for filename, bar in zip(output_files, bars)]
for t in threads:
t.daemon = True
t.start()
while num_projects_done < test_projects_total:
new_projects_done = int(subprocess.check_output(
f"find {report_dir} -wholename '*/index.html' | wc -l",
shell=True, text=True))
bar.update(new_projects_done - num_projects_done)
num_projects_done = new_projects_done
time.sleep(0.2)
for bar in bars:
bar.close()
close_follows = True
if __name__ == "__main__":
main(sys.argv[1:])