Skip to content

Commit

Permalink
Fix np.int64 issue in the laTeX
Browse files Browse the repository at this point in the history
  • Loading branch information
Mxtt-smith committed Aug 29, 2024
1 parent ba23695 commit a113b42
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion p3/plot/backend/pgfplots.py
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ def __init__(self, df, eff=None, size=None, stream=None, **kwargs):
app_df = app_df.sort_values(by=[eff_column], ascending=False)
yvalues = app_df[eff_column]
supported_platforms = list(app_df["platform"])
xvalues = np.arange(1, len(supported_platforms) + 1)
xvalues = [x for x in range(1, len(supported_platforms) + 1)]
plot_effs[app_name] = tuple(zip(xvalues, yvalues))

# Build a dictionary with "application name, (application name, qp)"
Expand Down

0 comments on commit a113b42

Please sign in to comment.