remove AMD for enabling gpu scheduling

This commit is contained in:
2022-11-28 14:30:29 -05:00
parent 5f61ae4758
commit bc33eedf19
+1 -1
View File
@@ -21,7 +21,7 @@ If ( $HardwareGPUSchedulingEnabled -eq $false ) {
$GPUs = (Get-WmiObject Win32_VideoController).Name
$FoundDiscreteGPU = $false
ForEach ( $gpu in $GPUs ) {
If ( ($gpu -ilike "*NVIDIA*") -or ($gpu -ilike "*AMD*") ) {
If ( $gpu -ilike "*NVIDIA*" ) {
$FoundDiscreteGPU = $true
}
}