No process and user information in output (for graphics application)
See original GitHub issueI have no process and user information while running gpustat with -cpu flags.
gpustat 0.4.0.dev
% python -m gpustat -cpu
feline Sun Aug 13 15:45:59 2017
[0] GeForce GTX 750 Ti | 48'C, 7 % | 213 / 1995 MB |
nvidia-smi v384.59 shows processes as well. Here is XML dump from it: nvidia-smi_out_gtx750ti.xml.txt
Issue Analytics
- State:
- Created 6 years ago
- Comments:10 (5 by maintainers)
Top Results From Across the Web
Permission issue with Performance Counters | NVIDIA ...
You may encounter the following error message when using NVIDIA tools: ERR_NVGPUCTRPERM The user running <tool_name/application_name> does not have permission ...
Read more >How Computers Work: Input and Output
Output : Information for the User. As we have seen, computer output takes the form of screen or printer output. Other forms of...
Read more >Troubleshoot Photoshop graphics processor (GPU) and ...
With the Photoshop 23.0 release, you can run the graphics processor compatibility check to ensure your GPU is compatible. To do so, go...
Read more >Defining PeopleSoft Process Scheduler Support Information
Defining Process Output Types. To access the Process Output Type Settings page, select PeopleTools, Process Scheduler, System Settings, Process Output Type.
Read more >Attach to a processes output for viewing - Stack Overflow
How would I detach from an applications output without killing the application? Normally if you fire up a talkative application using the command...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found

I think I got it. It is documented feature:
https://docs.nvidia.com/deploy/nvml-api/group__nvmlDeviceQueries.html#group__nvmlDeviceQueries_1g46ceaea624d5c96e098e03c453419d68
I guess this is about CUDA applications - and I was running glxgears for testing. So I found another function in their API and did some weird patching like this:
And now I have this:
@wookayin Current master works as expected, thank you.