mpiptop 0.1.0__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.
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: mpiptop
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: TUI for viewing MPI Python stacks across hosts
|
|
5
|
+
Author: yieldthought
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/yieldthought/mpiptop
|
|
8
|
+
Project-URL: Repository, https://github.com/yieldthought/mpiptop
|
|
9
|
+
Keywords: mpi,tui,py-spy,distributed,debugging
|
|
10
|
+
Classifier: Programming Language :: Python :: 3
|
|
11
|
+
Classifier: Operating System :: POSIX :: Linux
|
|
12
|
+
Requires-Python: >=3.8
|
|
13
|
+
Description-Content-Type: text/markdown
|
|
14
|
+
License-File: LICENSE
|
|
15
|
+
Requires-Dist: rich>=13.7
|
|
16
|
+
Requires-Dist: py-spy>=0.4.1
|
|
17
|
+
Dynamic: license-file
|
|
18
|
+
|
|
19
|
+
<p align="center">
|
|
20
|
+
<img src="https://raw.githubusercontent.com/yieldthought/mpiptop/main/screenshot.png" alt="mpiptop screenshot" width="920">
|
|
21
|
+
</p>
|
|
22
|
+
<p align="center">
|
|
23
|
+
<strong>mpiptop</strong> - live, side-by-side Python stack traces across MPI ranks.
|
|
24
|
+
</p>
|
|
25
|
+
<p align="center">
|
|
26
|
+
A focused TUI that makes distributed debugging feel calm and fast.
|
|
27
|
+
</p>
|
|
28
|
+
|
|
29
|
+
## Why it helps
|
|
30
|
+
- Auto-detects active `mpirun/prterun` and its rankfile
|
|
31
|
+
- One column per rank with subtle diff highlights
|
|
32
|
+
- Toggle main thread vs all threads, and a details panel
|
|
33
|
+
- Works over passwordless SSH; propagates venv env vars
|
|
34
|
+
|
|
35
|
+
## Install
|
|
36
|
+
```bash
|
|
37
|
+
pip install mpiptop
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
## Usage
|
|
41
|
+
```bash
|
|
42
|
+
mpiptop
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
Common options:
|
|
46
|
+
```bash
|
|
47
|
+
mpiptop --rankfile /etc/mpirun/rankfile_01_02
|
|
48
|
+
mpiptop --prterun-pid 12345
|
|
49
|
+
mpiptop --refresh 5
|
|
50
|
+
mpiptop --pythonpath /path/to/your/code
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
Controls: `q` quit | `space` refresh | `t` threads | `d` details
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
mpiptop.py,sha256=nz8YMs0j54vfxDr0bfjwON76QWZ_QAtR2rp0VkuhrFM,45815
|
|
2
|
+
mpiptop-0.1.0.dist-info/licenses/LICENSE,sha256=ChKmQ8qCXxdXRR_HIJECjIA5NLWlUTEJWh7Xkhm2wAA,1069
|
|
3
|
+
mpiptop-0.1.0.dist-info/METADATA,sha256=VauVpnkAiQokz6X5OXncDhygTbeJPrU_9rOTFya_oMQ,1477
|
|
4
|
+
mpiptop-0.1.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
5
|
+
mpiptop-0.1.0.dist-info/entry_points.txt,sha256=RsGsr8GBLfUNpb432YWS5gz4MWfWdK9xJRr1SmdnLo8,41
|
|
6
|
+
mpiptop-0.1.0.dist-info/top_level.txt,sha256=c2Vdu6tTg0DEPUWD8Odyods7fXsPWMQ2kSvjdKiTClc,8
|
|
7
|
+
mpiptop-0.1.0.dist-info/RECORD,,
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 yieldthought
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
mpiptop
|