Skip to content

Commit 2e0dfa8

Browse files
author
Sarah Krebs
committed
Add total runtime in overview
1 parent cecf5b1 commit 2e0dfa8

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
- Use highest budget as default budget for Cost over Time instead of Combined.
1818
- Show best value / config for each objective instead of merged objective in Overview (#159).
1919
- Use chosen objective instead of merged objective to get the incumbent for the calculation of LPI importance (#159).
20+
- Add total runtime in overview (#155).
2021

2122
# Version 1.2
2223

deepcave/plugins/summary/overview.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -178,6 +178,15 @@ def load_outputs(run, *_: Any) -> List[Any]: # type: ignore
178178
className="card-text",
179179
),
180180
*performance_outputs,
181+
html.Div(
182+
[
183+
html.Span(
184+
f"Total runtime [s]: "
185+
f"{max(trial.end_time for trial in run.history)}"
186+
),
187+
],
188+
className="card-text",
189+
),
181190
html.Div(
182191
[
183192
html.Span(f"Total configurations: {run.get_num_configs()}"),

0 commit comments

Comments
 (0)