nvitop/nvitop.py
Xuehai Pan c24509fa36 chore: dual-licensing project source code
Signed-off-by: Xuehai Pan <XuehaiPan@pku.edu.cn>
2022-11-30 12:55:26 +08:00

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())