A simple dash-based GPU monitor that uses web pages to continuously view GPU usage.
- Use the webpage to continuously view basic GPU usage, including GPU usage, remaining graphics memory, temperature, and fan speed
- Check who is using the GPU, including user, process ID, process creation time, process creation commands, etc. For details, see the description below.
Bifrost relies mainly on the following:
- Python 3.6+
- dash
- psutil
- pandas
- numpy
- nvidia-ml-py3
You can install these dependencies with the following command:
pip install dash psutil pandas numpy nvidia-ml-py3
You can also use requirements.txt
to install them:
pip install -r requirements.txt
python app.py
or using gunicorn:
gunicorn -c config.py app:server
Then open http://locahost:8150 or http://{your_ip}:8150 in your browser. Bazinga!
-
gpu
: GPU ID -
pid
: The process ID -
used_gpu_mem
: The GPU memory used by the process -
username
: The owner of the process -
name
: The Process name -
create_time
: The process creation time -
status
: The process status -
cpu_percent
: CPU utilization of the process -
cpu_num
: Which CPU this process is currently running on -
memory_percent
: Memory utilization of the process -
num_threads
: The number of threads currently used by this process -
cmdline
: The command line this process has been called
MIT.