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 d1bfe6c commit 2ff878aCopy full SHA for 2ff878a
runner/collect_results.py
@@ -73,10 +73,13 @@ def create_json(all_data: pd.DataFrame) -> str:
73
"value": all_data[is_correct_group(group)].mean_time_ms.mean(),
74
"extra": f"Target: {group[0]}"
75
f"\nTotal Iterations: {all_data[is_correct_group(group)].total_iterations.iloc[0]}"
76
- f"\nThreads: {group[2]}"
77
- f"\nScheduler: {group[-1]}"
+ (f"\nThreads: {group[2]}" if group[2] is not None else "")
+ (f"\nScheduler: {group[-1]}" if group[-1] is not None else "")
78
}
79
- for group in product(*[all_data[p].unique() for p in group_by])
+ for group in product(*[
80
+ all_data[p].unique() if p in all_data.columns else [None]
81
+ for p in group_by
82
+ ])
83
]
84
85
def latest_subdirectory(parent):
0 commit comments