[opt-viewer] Kill parser processes before moving onto rendering

The main benefit is that they release the memory they were holding onto.

llvm-svn: 326127
This commit is contained in:
Adam Nemet 2018-02-26 21:15:51 +00:00
parent 9dea9b4918
commit 713eb05c8c
1 changed files with 2 additions and 0 deletions

View File

@ -48,6 +48,8 @@ def pmap(func, iterable, processes, should_print_progress, *args, **kwargs):
initargs=(_current, _total,),
processes=processes)
result = pool.map(_wrapped_func, func_and_args, *args, **kwargs)
pool.close()
pool.join()
if should_print_progress:
sys.stdout.write('\r')