Skip to content

Commit

Permalink
Moved MPL and PGF specific code out of cascade and navchart into the
Browse files Browse the repository at this point in the history
backend specific objects.
  • Loading branch information
swright87 committed Mar 25, 2024
1 parent 04e0099 commit 797370a
Show file tree
Hide file tree
Showing 5 changed files with 969 additions and 832 deletions.
2 changes: 1 addition & 1 deletion p3/metrics/_pp.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ def pp(df):
# Keep only the most efficient (application, platform) results.
key = ["problem", "platform", "application"]
groups = df[key + efficiencies].groupby(key)
df = groups.agg(max)
df = groups.agg("max")
df.reset_index(inplace=True)

# Add a "did not run" value for applications that did not run
Expand Down
Loading

0 comments on commit 797370a

Please sign in to comment.