From c61c4b6e7bb7623b48670b6202f3feeffd9f3e59 Mon Sep 17 00:00:00 2001 From: David Schneider Date: Mon, 18 Sep 2023 10:13:37 +0200 Subject: [PATCH] Fix gathering of ranks instead of meshes in `gatherstats.py` --- tools/mapping-tester/gatherstats.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/mapping-tester/gatherstats.py b/tools/mapping-tester/gatherstats.py index 9f262266..b2c21bba 100755 --- a/tools/mapping-tester/gatherstats.py +++ b/tools/mapping-tester/gatherstats.py @@ -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)