GPU utilization

Is there a way to track GPU utilization in Domino?
Noted, that's Domino have only Memory and CPU charts.
Comments
-
For anyone wanting to profile the GPU utilization of their code, a good way to do it today is to run code in a workspace and benchmark using other tools, e.g opening a terminal in the workspace and using nvidia-smi: https://nvidia.custhelp.com/app/answers/detail/a_id/3751/~/useful-nvidia-smi-queries. (Things like `utilization.gpu`, `memory.used`, etc.) If anybody has favorite one-liners they use for profiling or other tips please post them here!
0 -
I ended up adding a glances web server to my RStudio environment definition. I then use the RStudio API to open it in the Viewer pane (which can be popped out into another tab). It doesn't satisfy the need for logging GPU usage, but it does work for quick glances (pun) while code is running.
rstudioapi::viewer("http://localhost:60128")
0