Skip to content

Commit c4910d8

Browse files
committed
fix data format in CompatibilityApplicationLayout
1 parent d2a994d commit c4910d8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pypop/trace/tracemetadata.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ def __init__(self, commsize, threads):
1717

1818
thread_modulus = sum(threads) / commsize
1919

20-
self.rank_threads = [(1 + i // thread_modulus, j) for i, j in enumerate(threads)]
20+
self.rank_threads = [(j, 1 + i // thread_modulus) for i, j in enumerate(threads)]
2121

2222

2323
class TraceMetadata:

0 commit comments

Comments
 (0)