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"?的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-12-24Docker环境部署资料详解
- 2024-12-24Docker环境部署教程:新手入门详解
- 2024-12-24Docker环境部署项目实战教程
- 2024-12-24Docker环境部署学习:初学者指南
- 2024-12-24Docker环境部署入门:新手必读指南
- 2024-12-20Docker部署资料:新手入门教程
- 2024-12-19Docker部署实战:新手入门教程
- 2024-12-19Docker部署教程:新手入门详解
- 2024-12-09云原生周刊:在Docker上部署大语言模型
- 2024-12-05Docker教程:新手快速入门指南