nvitop/nvitop.py
2021-05-11 23:20:41 +08:00

12 lines
219 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.
import sys
from nvitop.cli import main
if __name__ == '__main__':
sys.exit(main())