-
in this page there are links to Intel, Nvidia, AMD driver download pages. I'm currently using Intel built in GPU, the link to that driver in that page is old. I'm on latest build of Windows 10 Dev, Windows update automatically installs the latest Intel GPU driver. can someone help me with this? How do you check for the availability of vGPU for WSLg in the Host and Guest OS ? |
Beta Was this translation helpful? Give feedback.
Replies: 6 comments 12 replies
-
First of all make sure the GPU appears inside of wsl2. If the file
After that run something like |
Beta Was this translation helpful? Give feedback.
-
That said, even though you have vGPU correctly configured and can see your GPU in glxinfo, you won't see acceleration in Edge. Why? I don't know. |
Beta Was this translation helpful? Give feedback.
-
Could you share the output of your
For Edge, are you using |
Beta Was this translation helpful? Give feedback.
-
For Intel you actually do need to use that old driver at the moment as it is the only one that exposes vGPU support in WSL, the currently flighted driver on WU doesn't expose this yet, but this is something we're working with Intel on addressing. Verify that you are running on a the recently release 5.10 kernel
Look for the existence of /dev/dxg. If it exist, it means we've detected at least one vGPU capable device. Note that on older kernel (5.4) /dev/dxg would be created even when no actual vGPU was found... but on 5.10+ it is only created if we've actually enumerated a device over vPCI... so it's a quick way of determining if you have a vGPU. |
Beta Was this translation helpful? Give feedback.
-
Here are my notes on how I was able to get the D3D12 device shown in glxinfo -B in WSL 2/WSLg: |
Beta Was this translation helpful? Give feedback.
-
Hi, I try all the way mentioned above. It still not work. I try sudo apt install libegl-mesa0 |
Beta Was this translation helpful? Give feedback.
For Intel you actually do need to use that old driver at th…