mirror of
https://github.com/XuehaiPan/nvitop.git
synced 2026-05-15 14:15:55 -06:00
14 lines
356 B
Python
Executable file
14 lines
356 B
Python
Executable file
#!/usr/bin/env python3
|
|
#
|
|
# This file is part of nvitop, the interactive NVIDIA-GPU process viewer.
|
|
# License: GNU GPL version 3.
|
|
|
|
"""An interactive NVIDIA-GPU process viewer, the one-stop solution for GPU process management."""
|
|
|
|
import sys
|
|
|
|
from nvitop.cli import main # pylint: disable=no-name-in-module
|
|
|
|
|
|
if __name__ == '__main__':
|
|
sys.exit(main())
|