Skip to content

Commit 504db9d

Browse files
authored
Merge pull request #3382 from DarrylvanderPeijl/patch-7
Update deploy-gpu-node-pool.md
2 parents d63c7c9 + ab0ef38 commit 504db9d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

AKS-Hybrid/deploy-gpu-node-pool.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ Install the Azure Stack HCI, version 23H2 operating system locally on each serve
7373
On each host machine, navigate to **Control Panel > Add or Remove programs**, uninstall the NVIDIA host driver, then reboot the machine. After the machine reboots, confirm that the driver was successfully uninstalled. Open an elevated PowerShell terminal and run the following command:
7474

7575
```powershell
76-
Get-PnpDevice | select status, class, friendlyname, instanceid | findstr /i /c:"3d video"
76+
Get-PnpDevice | select status, class, friendlyname, instanceid | where {$_.friendlyname -eq "3D Video Controller"}
7777
```
7878

7979
You should see the GPU devices appear in an error state as shown in this example output:
@@ -99,7 +99,7 @@ Dismount-VMHostAssignableDevice -LocationPath $lp1 -Force
9999
To confirm that the GPUs were correctly dismounted from the host, run the following command. You should put GPUs in an `Unknown` state:
100100

101101
```powershell
102-
Get-PnpDevice | select status, class, friendlyname, instanceid | findstr /i /c:"3d video"
102+
Get-PnpDevice | select status, class, friendlyname, instanceid | where {$_.friendlyname -eq "3D Video Controller"}
103103
```
104104

105105
```output
@@ -131,7 +131,7 @@ pnputil /scan-devices
131131
After you install the mitigation driver, the GPUs are listed in the **OK** state under **Nvidia A2_base - Dismounted**:
132132

133133
```powershell
134-
Get-PnpDevice | select status, class, friendlyname, instanceid | findstr /i /c:"nvidia"
134+
Get-PnpDevice | select status, class, friendlyname, instanceid | where {$_.friendlyname -match "Nvidia"}"
135135
```
136136

137137
```output

0 commit comments

Comments
 (0)