Update benchmark scripts; add reference benchmark run

[benchmark]
This commit is contained in:
2020-11-15 06:41:39 -06:00
parent 914acfb2a6
commit 88621cdedb
3 changed files with 294 additions and 4 deletions

View File

@@ -9,7 +9,8 @@ from tabulate import tabulate
def process_all_log_files():
pathlist = Path(".").glob('results/*/*/*.log')
pathlist = list(Path(".").glob('results/*/*/*.log'))
pathlist += list(Path(".").glob('results/*/*.log'))
rows = []
for path in pathlist:
if ".ipy" in str(path):