We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e969c3 commit 22c830fCopy full SHA for 22c830f
scripts/create_perf_table.py
@@ -72,6 +72,15 @@
72
right_border = workbook.add_format({'right': 2})
73
for task_name in list(set(set_of_task_name)):
74
for type_of_task in list_of_type_of_tasks:
75
+ if task_name not in result_tables[table_name].keys():
76
+ print(f"Warning! Task '{task_name}' is not found in results")
77
+ worksheet.write(it_j, it_i, "Error!")
78
+ it_i += 1
79
80
81
82
83
+ continue
84
par_time = result_tables[table_name][task_name][type_of_task]
85
seq_time = result_tables[table_name][task_name]["seq"]
86
speed_up = seq_time / par_time
0 commit comments