答案1
我仍在寻找,似乎已经找到了解决方案...请参阅此帖子。 升级到 Ubuntu 20.04 后图形模糊 使用代码时
sudo apt purge xserver-xorg-video-intel
至少它对我来说是有效的,我的多 PGU 机器上的图形不再损坏。
答案2
我加入了面试官并关注了这个帖子。我遇到了同样的问题。我有一台多 GPU 的机器 = 集成 Intel HD Graphics 630,专用 7x NVIDIA GeForce GTX 980 Ti。由于我仅使用 nVidia 进行 CUDA 计算,因此显示被发送到 Intel HD - 通过编辑 /etc/X11/xorg.conf
Section "ServerLayout"
Identifier "layout"
Screen 0 "intel"
Screen 1 "nvidia1"
EndSection
Section "Device"
Identifier "intel"
Driver "intel"
BusID "PCI:00:02:0"
EndSection
Section "Screen"
Identifier "intel"
Device "intel"
EndSection
Section "Device"
Identifier "nvidia1"
Driver "nvidia"
BusID "PCI:01:00:0"
EndSection
Section "Screen"
Identifier "nvidia1"
Device "nvidia1"
EndSection