Changed benchmark output

This commit is contained in:
Lukas Wölfer
2020-02-13 20:00:34 +01:00
parent 1a8f9a83b0
commit e749c877f1
4 changed files with 60 additions and 26 deletions

View File

@@ -27,8 +27,9 @@ def main() -> None:
result = pool.imap_unordered(
run_benchmark, [Path(benchmark) for benchmark in benchmark_files]
)
for current_result in result:
print(current_result)
pool.close()
pool.join()
if __name__ == "__main__":