Skip to content

Commit

Permalink
Plot averages of runs
Browse files Browse the repository at this point in the history
  • Loading branch information
fsimonis committed Aug 8, 2024
1 parent a791497 commit 93ac635
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions tools/mapping-tester/plotconv.py
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,12 @@ def main(argv):
assert (
len(toMeshes) == 1
), f"There are {len(toMeshes)} to-meshes but only 1 is allowed. Fix your dataset!"

df = df.group_by(["mapping", "constraint", "mesh A", "ranks A", "ranks B"]).agg(
"avg"
)
df.sort_values("mesh A", inplace=True)

plotError(df, args.prefix)
plotMemory(df, args.prefix)
plotMapDataTime(df, args.prefix)
Expand Down

0 comments on commit 93ac635

Please sign in to comment.