mpiptop 0.1.1__py3-none-any.whl → 0.2.1__py3-none-any.whl
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.1.dist-info → mpiptop-0.2.1.dist-info}/METADATA +16 -2
- mpiptop-0.2.1.dist-info/RECORD +7 -0
- {mpiptop-0.1.1.dist-info → mpiptop-0.2.1.dist-info}/WHEEL +1 -1
- mpiptop.py +1366 -51
- mpiptop-0.1.1.dist-info/RECORD +0 -7
- {mpiptop-0.1.1.dist-info → mpiptop-0.2.1.dist-info}/entry_points.txt +0 -0
- {mpiptop-0.1.1.dist-info → mpiptop-0.2.1.dist-info}/licenses/LICENSE +0 -0
- {mpiptop-0.1.1.dist-info → mpiptop-0.2.1.dist-info}/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: mpiptop
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.2.1
|
|
4
4
|
Summary: TUI for viewing MPI Python stacks across hosts
|
|
5
5
|
Author: yieldthought
|
|
6
6
|
License-Expression: MIT
|
|
@@ -46,8 +46,22 @@ Common options:
|
|
|
46
46
|
```bash
|
|
47
47
|
mpiptop --rankfile /etc/mpirun/rankfile_01_02
|
|
48
48
|
mpiptop --prterun-pid 12345
|
|
49
|
+
mpiptop --slurm-job 123456
|
|
49
50
|
mpiptop --refresh 5
|
|
50
51
|
mpiptop --pythonpath /path/to/your/code
|
|
52
|
+
mpiptop record --out ./mpiptop-session-20260123-120000.jsonl
|
|
51
53
|
```
|
|
52
54
|
|
|
53
|
-
|
|
55
|
+
Slurm notes: if `SLURM_JOB_ID` is set or you have exactly one running job, mpiptop will auto-detect it.
|
|
56
|
+
|
|
57
|
+
Record/review (record is batch mode; use plain `mpiptop` for the TUI):
|
|
58
|
+
```bash
|
|
59
|
+
mpiptop record
|
|
60
|
+
mpiptop record --quiet
|
|
61
|
+
mpiptop review ./mpiptop-session-20260123-120000.jsonl
|
|
62
|
+
mpiptop summarize ./mpiptop-session-20260123-120000.jsonl --format text
|
|
63
|
+
```
|
|
64
|
+
|
|
65
|
+
Live controls: `q` quit | `space` refresh | `t` threads | `d` details | `r` record
|
|
66
|
+
|
|
67
|
+
Review controls: `q` quit | `left/right` move | `down` zoom | `up` zoom out | `t` threads | `d` details
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
mpiptop.py,sha256=-obFdgSQcVsdVE38b8NaxtS1yRFQCWR2xGE1NJDKozU,93237
|
|
2
|
+
mpiptop-0.2.1.dist-info/licenses/LICENSE,sha256=ChKmQ8qCXxdXRR_HIJECjIA5NLWlUTEJWh7Xkhm2wAA,1069
|
|
3
|
+
mpiptop-0.2.1.dist-info/METADATA,sha256=pIp11zp75Fs2Y0PRvcb1s4bq7tACnI42EE_1fgxIjtY,2042
|
|
4
|
+
mpiptop-0.2.1.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
|
|
5
|
+
mpiptop-0.2.1.dist-info/entry_points.txt,sha256=RsGsr8GBLfUNpb432YWS5gz4MWfWdK9xJRr1SmdnLo8,41
|
|
6
|
+
mpiptop-0.2.1.dist-info/top_level.txt,sha256=c2Vdu6tTg0DEPUWD8Odyods7fXsPWMQ2kSvjdKiTClc,8
|
|
7
|
+
mpiptop-0.2.1.dist-info/RECORD,,
|