nvitop/nvitop.py
2021-10-07 15:43:10 +08:00

14 lines
355 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())