Skip to content

A Project dedicated to making GPU Partitioning on Windows easier!

Notifications You must be signed in to change notification settings

kasullian/Easy-GPU-P

 
 

Repository files navigation

Easy-GPU-P

A work-in-progress project dedicated to making GPU Partitioning on Windows Hyper-V easier! Also known as GPU Paravirtualization (GPU-PV).

GPU-P allows you to partition your systems dedicated or integrated GPU and assign it to several Hyper-V VMs. It's the same technology that is used in WSL2, and Windows Sandbox.

Easy-GPU-P aims to make this easier by automating the steps required to get a GPU-P VM up and running.
Easy-GPU-P does the following...

  1. Creates a VM of your choosing
  2. Automatically Installs Windows to the VM
  3. Partitions your GPU of choice and copies the required driver files to the VM
  4. Installs the Amyuni virtual display driver to the VM, this ensures the parsec display driver functions properly.
  5. Installs the Parsec virtual display driver & Parsec to the VM, you can use Parsec for free non commercially. To use Parsec commercially, sign up to a Parsec For Teams account

Prerequisites:

  • Windows 10 20H1+ Pro or Enterprise or Windows 11 Pro or Enterprise.
  • Desktop Computer with dedicated NVIDIA/AMD GPU or Integrated Intel GPU - Laptops with NVIDIA GPUs are not supported at this time, but Intel integrated GPUs work on laptops. GPU must support hardware video encoding (NVIDIA NVENC, Intel Quicksync or AMD AMF).
  • Latest GPU driver from Intel.com or NVIDIA.com, don't rely on Device manager or Windows update.
  • Latest Windows 10+ ISO downloaded from here / Windows 11 ISO downloaded from here. - Do not use Media Creation Tool, if no direct ISO link is available, follow this guide.
  • Virtualisation enabled in the motherboard and Hyper-V fully enabled on the Windows 10/ 11 OS (requires reboot).
  • Allow Powershell scripts to run on your system - typically by running "Set-ExecutionPolicy unrestricted" in Powershell running as Administrator.

Instructions

  1. Make sure your system meets the prerequisits.
  2. Download the Repo and extract.
  3. Search your system for Powershell ISE and run as Administrator.
  4. In the extracted folder you downloaded, open PreChecks.ps1 in Powershell ISE.
  5. Open and Run PreChecks.ps1 in Powershell ISE using the green play button and copy the GPU Listed (or the warnings that you need to fix).
  6. Open CopyFilesToVM.ps1 and edit the params section at the top of the file, you need to be careful about how much ram, storage and hard drive you give it as you system needs to have that available. On Windows 10 the GPUName must be left as "AUTO", In Windows 11 it can be either "AUTO" or the specific name of the GPU you want to partition exactly how it appears in PreChecks.ps1. Additionally, you need to provide the path to the Windows 10/11 ISO file you downloaded.
  7. Run CopyFilesToVM.ps1 with your changes to the params section - this may take 5-10 minutes.
  8. View the VM in Hyper-V, once it gets to the Windows Desktop you will need to approve the certificate install request for Parsec and Virtual Audio Cable.
  9. Sign into Parsec on the VM.
  10. You should be good to go!

Upgrading GPU Drivers when you update the host GPU Drivers

It's important to update the VM GPU Drivers after you have updated the Host GPUs drivers. You can do this by...

  1. Reboot the host after updating GPU Drivers.
  2. Open Powershell as administrator and change directory (CD) to the path that CopyFilestoVM.ps1 and Update-VMGPUPartitonDriver.ps1 are located.
  3. Run Update-VMGpuPartitonDriver.ps1 -VMName "Name of your VM" -GPUName "Name of your GPU" (Windows 10 GPU name must be "AUTO")

Values

VMName = "GPUP" - Name of VM in Hyper-V and the computername / hostname
SourcePath = "C:\Users\james\Downloads\Win11_English_x64.iso" - path to Windows 10/ 11 ISO on your host
InstallPath = "F:\vms\disks" - path to use for storing the virtual disk
Edition = 6 - Leave as 6, this means Windows 10/11 Pro
VhdFormat = "VHDX" - Leave this value alone
DiskLayout = "UEFI" - Leave this value alone
SizeBytes = 40gb - Disk size, in this case 40GB
MemoryAmount = 8GB - Memory size, in this case 8GB
CPUCores = 4 - CPU Cores you want to give VM, in this case 4
UnattendPath = "$PSScriptRoot"+"\autounattend.xml" -Leave this value alone
GPUName = "AUTO" - AUTO selects the first available GPU. On Windows 11 you may also use the exact name of the GPU you want to share with the VM in multi GPU situations (GPU selection is not available in Windows 10 and must be set to AUTO)
GPUResourceAllocationPercentage = 50 - Percentage of the GPU you want to share with the VM
Team_ID = "" - The Parsec for Teams ID if you are a Parsec for Teams Subscriber
Key = "" - The Parsec for Teams Secret Key if you are a Parsec for Teams Subscriber
Username = "GPUVM" - The VM Windows Username, do not include special characters, and must be different from the "VMName" value you set
Password = "CoolestPassword!" - The VM Windows Password
Autologon = "true"- If you want the VM to automatically login to the Windows Desktop

Thanks to:

Notes:

  • Windows 10 20H1 is not well tested as I don't have any Win10 20H1 installs, if you have success on Windows 10 20H1 - 21H2 please let me know.
  • A powered on display / HDMI dummy dongle must be plugged into the GPU to allow Parsec to capture the screen. You only only need one of these per host machine regardless of number of VM's.
  • The screen may go black for times up to 10 seconds in sitautions when UAC prompts appear, applications go in and out of fullscreen and when you switch between video codecs in Parsec - not really sure why this happens, it's unique to GPU-P machines and seems to recover faster at 1280x720.
  • Vulkan renderer is unavailable and GL games may or may not work. This may help with some OpenGL apps.
  • If you boot your VM up for the first time and you are unable to press Yes to the UAC prompts for Parsec Virtual Display Driver / Virtual Audio cable it means that you used either special characters in the username you set or the username you set is the same as the VM name. Please recreate the VM making sure not to use the same username as the VM name and be sure not to include special characters.

About

A Project dedicated to making GPU Partitioning on Windows easier!

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • PowerShell 100.0%