Arama Yap Mesaj Submit
Request a Callback
+90
X
X

Select Your Currency

Turkish Lira $ US Dollar Euro
X
X

Select Your Currency

Turkish Lira $ US Dollar Euro

Contact Us

Location Halkali merkez neighborhood fatih st ozgur apt no 46 , Kucukcekmece , Istanbul , 34303 , TR
Last technical review · 17.08.2026 · Windows Server GPU-P

Windows Server 2025 GPU-P: Share One GPU Across Multiple Hyper-V VMs

GPU-P differs from classic DDA passthrough by partitioning physical GPU resources across VMs. A PowerShell command alone is not enough: supported server-class hardware, the correct driver/vGPU stack and Windows Server version are prerequisites.

Production note

Do not assume a desktop RTX card is production-supported merely because GPU-P cmdlets exist. Microsoft documentation explicitly separates server-class support, driver and licensing requirements.

windows server 2025 gpu-phyper-v gpu partitioninggpu-p live migration
TECHNICAL IMPLEMENTATION PROFILE
EKA CORE
Windows Server GPU-P

Windows Server 2025 GPU-P attaches a partition of a supported GPU to a VM; current Microsoft guidance notes one GPU partition per VM. Live migration adds GPU/vGPU software and version requirements.

2025Minimum Server version
Checked
1Partition / VM
Checked
LiveMigration support
Checked
v18+NVIDIA live-migration note
Checked
Technical guide · production-focused · official sources
Quick answer

Windows Server 2025 GPU-P attaches a partition of a supported GPU to a VM; current Microsoft guidance notes one GPU partition per VM. Live migration adds GPU/vGPU software and version requirements.

01

Technical scope at a glance

Partition a physical GPU across Hyper-V VMs with Windows Server 2025 GPU-P. Validate hardware, PowerShell state, drivers, VM configuration and live-migration requirements.

2025Minimum Server version

Microsoft GPU-P documentation targets Windows Server 2025 and later.

1Partition / VM

Current troubleshooting guidance notes one GPU partition per VM.

LiveMigration support

Windows Server 2025 includes supported GPU-P live-migration scenarios.

v18+NVIDIA live-migration note

Microsoft troubleshooting guidance cites NVIDIA vGPU v18+ for live migration.

On this page

  1. 1. Distinguish GPU-P from DDA and legacy approaches
  2. 2. Inventory host capability with PowerShell
  3. 3. Validate BIOS/UEFI and PCIe topology
  4. 4. Prepare the VM for a partition adapter
  5. 5. Validate guest-driver visibility with a real workload
  6. 6. Validate live migration on an aligned stack at low load
  7. 7. Measure scheduler/encoder contention, not only VRAM
  8. Frequently asked questions
02

1. Distinguish GPU-P from DDA and legacy approaches

GPU-P partitions GPU resources; DDA directly assigns a device to one VM. Choose based on isolation, density and vendor support.

ModelSharingTypical use
GPU-PYes, partitionsMultiple VMs per GPU
DDANo, device passthroughOne device → one VM
03

2. Inventory host capability with PowerShell

Validate Hyper-V, GPU drivers, IOMMU/firmware and partitionable GPU state first. Do not force past unsupported status.

Command
Get-WindowsFeature Hyper-V
Command
Get-VMHostPartitionableGpu
Command
Get-PnpDevice -Class Display | Format-Table Status,FriendlyName,InstanceId -Auto
Command
Get-CimInstance Win32_VideoController | Select-Object Name,DriverVersion,AdapterRAM
04

3. Validate BIOS/UEFI and PCIe topology

Check IOMMU/VT-d/AMD-Vi, Above 4G Decoding and vendor-recommended firmware settings for the server model.

Update firmware and BMC to supported releases.
Document GPU NUMA/PCIe placement.
Keep GPU/vGPU stack versions aligned across cluster nodes.
05

4. Prepare the VM for a partition adapter

Add the GPU partition adapter while the VM is off and tune min/optimal/max resources only within supported guidance.

Command
$vm='AI-VM01'
Command
Stop-VM -Name $vm -Force
Command
Add-VMGpuPartitionAdapter -VMName $vm
Command
Get-VMGpuPartitionAdapter -VMName $vm | Format-List *
Command
Start-VM -Name $vm
06

5. Validate guest-driver visibility with a real workload

Seeing a device in Device Manager is insufficient. Run CUDA/DirectML/vendor APIs and a real inference or rendering workload.

Command
nvidia-smi
Command
dxdiag /t C:\Temp\dxdiag.txt
Command
Get-PnpDevice -Class Display
07

6. Validate live migration on an aligned stack at low load

GPU-P live migration can behave differently from standard VM migration due to GPU state transfer and vendor-stack requirements. Measure with a staging VM first.

Align GPU model, driver and vGPU version on source and target.
Measure inference latency and dropped sessions during migration.
Test the failback path too.
08

7. Measure scheduler/encoder contention, not only VRAM

Splitting one GPU across four VMs does not guarantee each receives a fixed quarter of performance. Workload type, scheduling and vendor profiles matter.

MetricMeasurement
VRAMPeak + headroom
GPU utilizationp50 / p95
LatencySingle VM vs concurrent VMs
MigrationDuration + workload impact
EKA SUNUCU · TECHNICAL

For GPU-P, validate support and VM density before buying the card

Plan a physical GPU configuration on Eka Sunucu around target VM count, VRAM, workload and Hyper-V topology.

Production principleMeasure → Test → DeployNo fabricated benchmark data.
SRC

Official sources

Primary documentation and technical references used by this guide.

EKA

Related technical guides

Continue with related infrastructure and implementation guides.

FAQ

Frequently asked questions

Windows Server GPU-P

Is GPU-P production-supported on Windows 11 Hyper-V?

This guide targets Microsoft’s Windows Server 2025 GPU partitioning support model. Do not assume the same support for client OS or desktop-class hardware.

Can a VM have multiple GPU partitions?

Current Microsoft troubleshooting guidance states support for one GPU partition per VM.

Does GPU-P support live migration?

Windows Server 2025 supports scenarios for it, subject to GPU/vGPU stack, version and hardware requirements.

Can I use an RTX 4090/5090 for GPU-P?

Cmdlet availability is not a support statement. Check Microsoft/vendor support matrices and licensing before production design.

Top