A simplified version of the output from the `nvidia-smi` command.
Project description
SSMI - Simplified NVIDIA System Management Interface Tool
ssmi
is a lightweight command-line tool designed to provide a simplified version of the output from the NVIDIA System Management Interface (nvidia-smi
). It focuses on displaying GPU and process details more concisely, offering a streamlined overview for quick assessments.
Features
- Display GPU details, including performance, temperature, power usage, memory usage, and utilization metrics.
- Display process details, listing each process utilizing the GPU, including process ID, type, name, and memory usage.
- Filter output to show only GPU details, only process details, or both.
Output Differences:
nvidia-smi
Tue Feb 20 13:40:51 2024
+---------------------------------------------------------------------------------------+
| NVIDIA-SMI 535.154.05 Driver Version: 535.154.05 CUDA Version: 12.2 |
|-----------------------------------------+----------------------+----------------------+
| GPU Name Persistence-M | Bus-Id Disp.A | Volatile Uncorr. ECC |
| Fan Temp Perf Pwr:Usage/Cap | Memory-Usage | GPU-Util Compute M. |
| | | MIG M. |
|=========================================+======================+======================|
| 0 NVIDIA RTX A5500 Laptop GPU Off | 00000000:01:00.0 Off | Off |
| N/A 47C P8 16W / 90W | 1206MiB / 16384MiB | 21% Default |
| | | N/A |
+-----------------------------------------+----------------------+----------------------+
+---------------------------------------------------------------------------------------+
| Processes: |
| GPU GI CI PID Type Process name GPU Memory |
| ID ID Usage |
|=======================================================================================|
| 0 N/A N/A 2241 G /usr/lib/xorg/Xorg 492MiB |
| 0 N/A N/A 14541 G /usr/bin/kwalletd5 4MiB |
| 0 N/A N/A 14722 G ...-gnu/libexec/xdg-desktop-portal-kde 4MiB |
| 0 N/A N/A 14766 G /usr/bin/ksmserver 4MiB |
| 0 N/A N/A 14768 G /usr/bin/kded5 4MiB |
| 0 N/A N/A 14771 G /usr/bin/kwin_x11 131MiB |
| 0 N/A N/A 14814 G /usr/bin/plasmashell 64MiB |
| 0 N/A N/A 14847 G ...c/polkit-kde-authentication-agent-1 4MiB |
| 0 N/A N/A 15108 G ...86_64-linux-gnu/libexec/kdeconnectd 4MiB |
| 0 N/A N/A 15123 G /usr/bin/kaccess 4MiB |
| 0 N/A N/A 15136 G ...-linux-gnu/libexec/DiscoverNotifier 4MiB |
| 0 N/A N/A 15138 G /usr/bin/kalendarac 4MiB |
| 0 N/A N/A 15252 G ...ures=SpareRendererForSitePerProcess 9MiB |
| 0 N/A N/A 15573 G /usr/bin/dolphin 4MiB |
| 0 N/A N/A 15602 G /opt/google/chrome/chrome 4MiB |
| 0 N/A N/A 15645 G ...seed-version=20240216-130127.682000 273MiB |
| 0 N/A N/A 17641 G /usr/bin/kwalletmanager5 70MiB |
| 0 N/A N/A 17899 G /usr/bin/alacritty 10MiB |
| 0 N/A N/A 23102 G /usr/bin/alacritty 10MiB |
| 0 N/A N/A 25803 G ...AAAAAAAACAAAAAAAAAA= --shared-files 32MiB |
+---------------------------------------------------------------------------------------+
ssmi
+---------------------------------------------------------------------------------------+
| NVIDIA-SMI 535.154.05 Driver Version: 535.154.05 CUDA Version: 12.2 |
|-----------------------------------------+----------------------+----------------------+
| GPU Fan Temp Perf Pwr:Usage/Cap | Memory-Usage | GPU-Util Compute M. |
|=========================================+======================+======================|
| 0 N/A 47C P5 25W / 90W | 1238MiB / 16384MiB | 11% Default |
+-----------------------------------------+----------------------+----------------------+
| GPU GI CI PID Type Process name GPU Memory |
|=======================================================================================|
| 0 N/A N/A 2241 G /usr/lib/xorg/Xorg 511MiB |
| 0 N/A N/A 14541 G /usr/bin/kwalletd5 4MiB |
| 0 N/A N/A 14722 G ...-gnu/libexec/xdg-desktop-portal-kde 4MiB |
| 0 N/A N/A 14766 G /usr/bin/ksmserver 4MiB |
| 0 N/A N/A 14768 G /usr/bin/kded5 4MiB |
| 0 N/A N/A 14771 G /usr/bin/kwin_x11 132MiB |
| 0 N/A N/A 14814 G /usr/bin/plasmashell 64MiB |
| 0 N/A N/A 14847 G ...c/polkit-kde-authentication-agent-1 4MiB |
| 0 N/A N/A 15108 G ...86_64-linux-gnu/libexec/kdeconnectd 4MiB |
| 0 N/A N/A 15123 G /usr/bin/kaccess 4MiB |
| 0 N/A N/A 15136 G ...-linux-gnu/libexec/DiscoverNotifier 4MiB |
| 0 N/A N/A 15138 G /usr/bin/kalendarac 4MiB |
| 0 N/A N/A 15252 G ...ures=SpareRendererForSitePerProcess 9MiB |
| 0 N/A N/A 15573 G /usr/bin/dolphin 4MiB |
| 0 N/A N/A 15602 G /opt/google/chrome/chrome 4MiB |
| 0 N/A N/A 15645 G ...seed-version=20240216-130127.682000 273MiB |
| 0 N/A N/A 17641 G /usr/bin/kwalletmanager5 70MiB |
| 0 N/A N/A 17899 G /usr/bin/alacritty 10MiB |
| 0 N/A N/A 23102 G /usr/bin/alacritty 10MiB |
| 0 N/A N/A 25803 G ...AAAAAAAACAAAAAAAAAA= --shared-files 44MiB |
+---------------------------------------------------------------------------------------+
Installation
There are two options for installation
Pip
pip install ssmi-py
Source
git clone https://github.com/simplified-nvidia-smi/ssmi-py
cd ssmi-py
sudo make install
This will install ssmi
to /usr/bin
and its man page to the appropriate system directories.
Usage
Run ssmi
without any arguments to display both GPU details and process information.
ssmi
To display only GPU details:
ssmi -g
To display only process details:
ssmi -p
For more information and options, use the help flag:
ssmi -h
Contributing
Contributions to ssmi
are welcome! Please feel free to submit pull requests, report bugs, and suggest features through the GitHub issue tracker.
License
This project is licensed under the MIT License - see the LICENSE file for details.
Authors
- Ben Elfner
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file ssmi-py-0.1.0.tar.gz
.
File metadata
- Download URL: ssmi-py-0.1.0.tar.gz
- Upload date:
- Size: 5.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.10.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 15070edd195c56a47ec56f0f1a5512b5f081891e1315e6e80fe14fdc4a03d399 |
|
MD5 | f07d730b9d46549183e4b82600a76b54 |
|
BLAKE2b-256 | 6accbfef517e2fd6504e7982fd02069a40e008b7a475168b88c7256cb70cc53b |
File details
Details for the file ssmi_py-0.1.0-py3-none-any.whl
.
File metadata
- Download URL: ssmi_py-0.1.0-py3-none-any.whl
- Upload date:
- Size: 5.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.10.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | dcc3a083424eedfbc5bb39eb86241492e840967d447062f06366a0b3fa219c92 |
|
MD5 | d2b81a66bb65249fcbde1dc99d80d2a5 |
|
BLAKE2b-256 | 8e2e43bb5f48d3d529869444cb7ca9869633676ed03e76d984b93dd8b93b4d63 |