One of the issues with running GPU's in and out of PCIe passthrough mode, running different models of GPU (older), and meeting the needs of host-native applications for GPU compute (like hashing) is the complexity and possible conflicts that arise in the host which aren't anticipated or quickly isolated. It's at this point that I should say, avoid using the host for native applications mixed with a guest VM's PCIe passthrough needs even when you don't feel the host native applications are particularly taxing.
One such issue which can occur during an upgrade, is graphical subsystem/driver changes, particularly module blacklisting. Mixing of proprietary and non-proprietary drivers or use of the ROCM drivers can present difficulties. Symptoms of the issue include the following:
A simple grep in the modprobe.d directory should locate the offending blacklist entry
Example: xorg radeon driver
~# grep -r "radeon" /etc/modprobe.d/
/etc/modprobe.d/blacklist-radeon.conf:blacklist radeon
The solution on Ubuntu is simply to comment out the blacklist entry, update-initramfs and restart:
update-initramfs -u
reboot