Skip to content

Commit

Permalink
Gather raw memory measurements in mapping tools
Browse files Browse the repository at this point in the history
  • Loading branch information
davidscn committed Oct 30, 2023
1 parent 278fd5b commit 1f43f59
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/mapping-tester/gatherstats.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def memoryStats(dir):
if os.path.isfile(memfile):
try:
with open(memfile, "r") as file:
total = sum([float(e) / 1024.0 for e in file.readlines()])
total = sum([float(e) / 1.0 for e in file.readlines()])
except BaseException:
pass
stats[f"peakMem{P}"] = total
Expand Down

0 comments on commit 1f43f59

Please sign in to comment.