Skip to content

Commit

Permalink
Rename
Browse files Browse the repository at this point in the history
  • Loading branch information
fsimonis committed Feb 6, 2025
1 parent 46fdfc1 commit 7d1928a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tools/mapping-tester/plotconv.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ def plotConv(df: pl.DataFrame, yname: str, ylabel: str, filename: str):
)


def plotWorkError(df: pl.DataFrame, yname: str, ylabel: str, filename: str):
def plotRuntimeAccuracy(df: pl.DataFrame, yname: str, ylabel: str, filename: str):
plotBack(
df,
yname=yname,
Expand Down Expand Up @@ -149,13 +149,13 @@ def main(argv):
ylabel="time to map Data [us]",
filename=f"{args.prefix}-mapt",
)
plotWorkError(
plotRuntimeAccuracy(
df,
yname="computeMappingTime",
ylabel="time to compute mapping [us]",
filename=f"{args.prefix}-computetAccuracy",
)
plotWorkError(
plotRuntimeAccuracy(
df,
yname="mapDataTime",
ylabel="time to map Data [us]",
Expand Down

0 comments on commit 7d1928a

Please sign in to comment.