Skip to content

Commit

Permalink
TL: fixed bug in schedule webapps
Browse files Browse the repository at this point in the history
  • Loading branch information
tlunet committed Oct 15, 2023
1 parent abc040b commit b973e03
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion web_apps/schedule/parareal.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ def compute(self, response_data: dict[str, Any] | None) -> ResponseStages:

fig = parareal.plotSchedule(N, K, nProc=N, schedulerType=schedulerType)
time = parareal.getRuntime(N, K, N, schedulerType)
speedup, efficiency, nProcs = parareal.getPerformances(
speedup, efficiency, nProcs, _ = parareal.getPerformances(
N, K, N, schedulerType)

# === Response ===
Expand Down
2 changes: 1 addition & 1 deletion web_apps/schedule/pararealFCF.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ def compute(self, response_data: dict[str, Any] | None) -> ResponseStages:

fig = pararealFCF.plotSchedule(N, K, nProc=N, schedulerType=schedulerType)
time = pararealFCF.getRuntime(N, K, N, schedulerType)
speedup, efficiency, nProcs = pararealFCF.getPerformances(
speedup, efficiency, nProcs, _ = pararealFCF.getPerformances(
N, K, N, schedulerType)

# === Response ===
Expand Down

0 comments on commit b973e03

Please sign in to comment.