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-11-14Docker端口:你真的公开了哪些东西?
- 2024-11-14用DOCKER在家里的实验室里搞些酷炫的玩意儿
- 2024-11-05掌握Docker:高效安全的十大最佳实践
- 2024-11-05在 Docker Compose 中怎么设置端口映射-icode9专业技术文章分享
- 2024-11-05在 Docker Compose 中怎么设置环境变量-icode9专业技术文章分享
- 2024-11-04Docker环境部署项目实战:新手入门教程
- 2024-11-04Docker环境部署资料:新手入门教程
- 2024-11-01Docker环境部署教程:新手入门指南
- 2024-11-01超越Docker:苹果芯片上的模拟、编排和虚拟化方案讲解
- 2024-11-01Docker环境部署:新手入门教程