├── .gitignore ├── GPUmodules ├── GPUKeys.py ├── GPUgui.py ├── GPUmodule.py ├── RegexPatterns.py ├── __init__.py └── env.py ├── LICENSE ├── MANIFEST.in ├── README.md ├── docs ├── Type1vsType2.png ├── USER_GUIDE.md ├── gpu-monitor-gui_scrshot.png ├── gpu-pac.png ├── gpu-pac_scrshot.png └── gpu-plot_scrshot.png ├── gpu-chk ├── gpu-ls ├── gpu-mon ├── gpu-pac ├── gpu-plot ├── icons ├── gpu-mon.icon.png ├── gpu-pac.icon.png └── gpu-plot.icon.png ├── man ├── gpu-chk.1 ├── gpu-ls.1 ├── gpu-mon.1 ├── gpu-pac.1 └── gpu-plot.1 ├── requirements-venv.txt └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ricks-Lab/gpu-utils/HEAD/.gitignore -------------------------------------------------------------------------------- /GPUmodules/GPUKeys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ricks-Lab/gpu-utils/HEAD/GPUmodules/GPUKeys.py -------------------------------------------------------------------------------- /GPUmodules/GPUgui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ricks-Lab/gpu-utils/HEAD/GPUmodules/GPUgui.py -------------------------------------------------------------------------------- /GPUmodules/GPUmodule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ricks-Lab/gpu-utils/HEAD/GPUmodules/GPUmodule.py -------------------------------------------------------------------------------- /GPUmodules/RegexPatterns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ricks-Lab/gpu-utils/HEAD/GPUmodules/RegexPatterns.py -------------------------------------------------------------------------------- /GPUmodules/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ricks-Lab/gpu-utils/HEAD/GPUmodules/__init__.py -------------------------------------------------------------------------------- /GPUmodules/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ricks-Lab/gpu-utils/HEAD/GPUmodules/env.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ricks-Lab/gpu-utils/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ricks-Lab/gpu-utils/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ricks-Lab/gpu-utils/HEAD/README.md -------------------------------------------------------------------------------- /docs/Type1vsType2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ricks-Lab/gpu-utils/HEAD/docs/Type1vsType2.png -------------------------------------------------------------------------------- /docs/USER_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ricks-Lab/gpu-utils/HEAD/docs/USER_GUIDE.md -------------------------------------------------------------------------------- /docs/gpu-monitor-gui_scrshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ricks-Lab/gpu-utils/HEAD/docs/gpu-monitor-gui_scrshot.png -------------------------------------------------------------------------------- /docs/gpu-pac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ricks-Lab/gpu-utils/HEAD/docs/gpu-pac.png -------------------------------------------------------------------------------- /docs/gpu-pac_scrshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ricks-Lab/gpu-utils/HEAD/docs/gpu-pac_scrshot.png -------------------------------------------------------------------------------- /docs/gpu-plot_scrshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ricks-Lab/gpu-utils/HEAD/docs/gpu-plot_scrshot.png -------------------------------------------------------------------------------- /gpu-chk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ricks-Lab/gpu-utils/HEAD/gpu-chk -------------------------------------------------------------------------------- /gpu-ls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ricks-Lab/gpu-utils/HEAD/gpu-ls -------------------------------------------------------------------------------- /gpu-mon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ricks-Lab/gpu-utils/HEAD/gpu-mon -------------------------------------------------------------------------------- /gpu-pac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ricks-Lab/gpu-utils/HEAD/gpu-pac -------------------------------------------------------------------------------- /gpu-plot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ricks-Lab/gpu-utils/HEAD/gpu-plot -------------------------------------------------------------------------------- /icons/gpu-mon.icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ricks-Lab/gpu-utils/HEAD/icons/gpu-mon.icon.png -------------------------------------------------------------------------------- /icons/gpu-pac.icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ricks-Lab/gpu-utils/HEAD/icons/gpu-pac.icon.png -------------------------------------------------------------------------------- /icons/gpu-plot.icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ricks-Lab/gpu-utils/HEAD/icons/gpu-plot.icon.png -------------------------------------------------------------------------------- /man/gpu-chk.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ricks-Lab/gpu-utils/HEAD/man/gpu-chk.1 -------------------------------------------------------------------------------- /man/gpu-ls.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ricks-Lab/gpu-utils/HEAD/man/gpu-ls.1 -------------------------------------------------------------------------------- /man/gpu-mon.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ricks-Lab/gpu-utils/HEAD/man/gpu-mon.1 -------------------------------------------------------------------------------- /man/gpu-pac.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ricks-Lab/gpu-utils/HEAD/man/gpu-pac.1 -------------------------------------------------------------------------------- /man/gpu-plot.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ricks-Lab/gpu-utils/HEAD/man/gpu-plot.1 -------------------------------------------------------------------------------- /requirements-venv.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ricks-Lab/gpu-utils/HEAD/requirements-venv.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ricks-Lab/gpu-utils/HEAD/setup.py --------------------------------------------------------------------------------