Hi,
Have you tried spinning up your linux VM with gpu passthru? Does it start up?
I'm running Ryzen 1700 with Nvidia 1050ti GPU and ROM image.
That response was more toward Joris, since I think he is using an AMD GPU.
I just spun up that Ubuntu VM from the grave. It was so old it was running 19.04 and I had to update Ubuntu to 19.10. Even though Ubuntu seemed to indicate it saw the GPU and had even updated the drivers, running
sudo nvidia-gmi
returned " Unable to determine the device handle for GPU 0000:00:01.0: Unknown Error "I had to update my VM config to match my Windows VM which I hadn't had to do before:
These are the updates I had to make specifically:
Code:
args: -cpu 'host,+kvm_pv_unhalt,+kvm_pv_eoi,hv_spinlocks=0x1fff,hv_vapic,hv_time,hv_reset,hv_vpindex,hv_runtime,hv_relaxed,hv_synic,hv_stimer,hv_tlbflush,hv_ipi,hv_vendor_id=GIGABYTE,kvm=off' -machine 'kernel_irqchip=on'
cpu: host,hidden=1,flags=+pcid
I also specified a romfile:
Code:
hostpci0: 02:00.0,pcie=1,romfile=nvidia1070.rom
Prior to this, I did not have to specify any args nor a romfile.
-TorqueWrench