问题描述
在使用ubuntu系统作为炼丹平台时,/usr/lib/xorg/xorg桌面会占用过多gpu显存,使cuda能够使用的gpu显存减少一大部分。
解决思路
该问题点主要是由于系统默认使用独立显卡,可以通过修改xorg的显卡使用来让xorg切换到集成显卡。
方法如下:
1、编辑如下文件,如果没有则手动添加
sudo vi /etc/X11/xorg.conf
2、插入以下内容,其中BusId为自己的集成显卡id,可以通过 lspci | grep VGA
查看
Section "Device"
Identifier "intel"
Driver "intel"
BusId "PCI:0:2:0"
EndSection
Section "Screen"
Identifier "intel"
Device "intel"
EndSection
3、重启后用nvidia-smi查看显卡占用
网友评论