Is it correct that "nvidia-smi" on Docker does not show "Processes"?

2021/11/6 6:12:04

本文主要是介绍Is it correct that "nvidia-smi" on Docker does not show "Processes"?,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

https://stackoverflow.com/questions/63654885/is-it-correct-that-nvidia-smi-on-docker-does-not-show-processes

 

Solution: https://github.com/matpool/mpu  A shim driver allows in-docker nvidia-smi showing correct process list without modify anything.

 

"move process from gpu to cpu nvidia-smi"

https://unix.stackexchange.com/questions/591393/how-to-shift-process-from-gpu-to-cpu-usage

Your GPU is being used for both display and compute processes; you can see which is which by looking at the “Type” column — “G” means that the process is a graphics process (using the GPU for its display), “C” means that the process is a compute process (using the GPU for computation).

To move a type “G” process of the GPU, you need to stop it from displaying on the GPU, which will involve stopping the process and (if appropriate) starting it on another GPU for display purposes.

As far as the ...AAAAAAAAAAAACAAAAAAAAAA= --shared-files process is concerned, you’ll have to look for it using ps to determine what it is.



这篇关于Is it correct that "nvidia-smi" on Docker does not show "Processes"?的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程