mpiptop 0.1.0__tar.gz → 0.2.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {mpiptop-0.1.0 → mpiptop-0.2.0}/PKG-INFO +13 -2
- {mpiptop-0.1.0 → mpiptop-0.2.0}/README.md +12 -1
- {mpiptop-0.1.0 → mpiptop-0.2.0}/mpiptop.egg-info/PKG-INFO +13 -2
- {mpiptop-0.1.0 → mpiptop-0.2.0}/mpiptop.py +1154 -41
- {mpiptop-0.1.0 → mpiptop-0.2.0}/pyproject.toml +1 -1
- {mpiptop-0.1.0 → mpiptop-0.2.0}/LICENSE +0 -0
- {mpiptop-0.1.0 → mpiptop-0.2.0}/mpiptop.egg-info/SOURCES.txt +0 -0
- {mpiptop-0.1.0 → mpiptop-0.2.0}/mpiptop.egg-info/dependency_links.txt +0 -0
- {mpiptop-0.1.0 → mpiptop-0.2.0}/mpiptop.egg-info/entry_points.txt +0 -0
- {mpiptop-0.1.0 → mpiptop-0.2.0}/mpiptop.egg-info/requires.txt +0 -0
- {mpiptop-0.1.0 → mpiptop-0.2.0}/mpiptop.egg-info/top_level.txt +0 -0
- {mpiptop-0.1.0 → mpiptop-0.2.0}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: mpiptop
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.2.0
|
|
4
4
|
Summary: TUI for viewing MPI Python stacks across hosts
|
|
5
5
|
Author: yieldthought
|
|
6
6
|
License-Expression: MIT
|
|
@@ -48,6 +48,17 @@ mpiptop --rankfile /etc/mpirun/rankfile_01_02
|
|
|
48
48
|
mpiptop --prterun-pid 12345
|
|
49
49
|
mpiptop --refresh 5
|
|
50
50
|
mpiptop --pythonpath /path/to/your/code
|
|
51
|
+
mpiptop record --out ./mpiptop-session-20260123-120000.jsonl
|
|
51
52
|
```
|
|
52
53
|
|
|
53
|
-
|
|
54
|
+
Record/review (record is batch mode; use plain `mpiptop` for the TUI):
|
|
55
|
+
```bash
|
|
56
|
+
mpiptop record
|
|
57
|
+
mpiptop record --quiet
|
|
58
|
+
mpiptop review ./mpiptop-session-20260123-120000.jsonl
|
|
59
|
+
mpiptop summarize ./mpiptop-session-20260123-120000.jsonl --format text
|
|
60
|
+
```
|
|
61
|
+
|
|
62
|
+
Live controls: `q` quit | `space` refresh | `t` threads | `d` details | `r` record
|
|
63
|
+
|
|
64
|
+
Review controls: `q` quit | `left/right` move | `down` zoom | `up` zoom out | `t` threads | `d` details
|
|
@@ -30,6 +30,17 @@ mpiptop --rankfile /etc/mpirun/rankfile_01_02
|
|
|
30
30
|
mpiptop --prterun-pid 12345
|
|
31
31
|
mpiptop --refresh 5
|
|
32
32
|
mpiptop --pythonpath /path/to/your/code
|
|
33
|
+
mpiptop record --out ./mpiptop-session-20260123-120000.jsonl
|
|
33
34
|
```
|
|
34
35
|
|
|
35
|
-
|
|
36
|
+
Record/review (record is batch mode; use plain `mpiptop` for the TUI):
|
|
37
|
+
```bash
|
|
38
|
+
mpiptop record
|
|
39
|
+
mpiptop record --quiet
|
|
40
|
+
mpiptop review ./mpiptop-session-20260123-120000.jsonl
|
|
41
|
+
mpiptop summarize ./mpiptop-session-20260123-120000.jsonl --format text
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
Live controls: `q` quit | `space` refresh | `t` threads | `d` details | `r` record
|
|
45
|
+
|
|
46
|
+
Review controls: `q` quit | `left/right` move | `down` zoom | `up` zoom out | `t` threads | `d` details
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: mpiptop
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.2.0
|
|
4
4
|
Summary: TUI for viewing MPI Python stacks across hosts
|
|
5
5
|
Author: yieldthought
|
|
6
6
|
License-Expression: MIT
|
|
@@ -48,6 +48,17 @@ mpiptop --rankfile /etc/mpirun/rankfile_01_02
|
|
|
48
48
|
mpiptop --prterun-pid 12345
|
|
49
49
|
mpiptop --refresh 5
|
|
50
50
|
mpiptop --pythonpath /path/to/your/code
|
|
51
|
+
mpiptop record --out ./mpiptop-session-20260123-120000.jsonl
|
|
51
52
|
```
|
|
52
53
|
|
|
53
|
-
|
|
54
|
+
Record/review (record is batch mode; use plain `mpiptop` for the TUI):
|
|
55
|
+
```bash
|
|
56
|
+
mpiptop record
|
|
57
|
+
mpiptop record --quiet
|
|
58
|
+
mpiptop review ./mpiptop-session-20260123-120000.jsonl
|
|
59
|
+
mpiptop summarize ./mpiptop-session-20260123-120000.jsonl --format text
|
|
60
|
+
```
|
|
61
|
+
|
|
62
|
+
Live controls: `q` quit | `space` refresh | `t` threads | `d` details | `r` record
|
|
63
|
+
|
|
64
|
+
Review controls: `q` quit | `left/right` move | `down` zoom | `up` zoom out | `t` threads | `d` details
|