Skip to content

Commit

Permalink
Fix gathering of ranks instead of meshes in gatherstats.py
Browse files Browse the repository at this point in the history
  • Loading branch information
davidscn committed Sep 18, 2023
1 parent ad5501f commit c61c4b6
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 @@ -96,7 +96,7 @@ def main(argv):
assert len(parts) >= 5
mapping, constraint, meshes, ranks, _ = parts[-5:]
meshA, meshB = meshes.split("-")
ranksA, ranksB = meshes.split("-")
ranksA, ranksB = ranks.split("-")

with open(os.path.join(args.outdir, file), "r") as jsonfile:
stats = json.load(jsonfile)
Expand Down

0 comments on commit c61c4b6

Please sign in to comment.