You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/virtual-machines/extensions/hpccompute-gpu-windows.md
+17-7Lines changed: 17 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,20 +13,18 @@ ms.devlang: na
13
13
ms.topic: article
14
14
ms.tgt_pltfrm: vm-windows
15
15
ms.workload: infrastructure-services
16
-
ms.date: 08/20/2018
16
+
ms.date: 11/15/2018
17
17
ms.author: roiyz
18
18
19
19
---
20
20
# NVIDIA GPU Driver Extension for Windows
21
21
22
22
## Overview
23
23
24
-
This extension installs NVIDIA GPU drivers on Windows N-series VMs. Depending on the VM family, the extension installs CUDA or GRID drivers. When you install NVIDIA drivers using this extension, you are accepting and agreeing to the terms of the NVIDIA End-User License Agreement. During the installation process, your virtual machine may reboot to complete the driver setup.
24
+
This extension installs NVIDIA GPU drivers on Windows N-series VMs. Depending on the VM family, the extension installs CUDA or GRID drivers. When you install NVIDIA drivers using this extension, you are accepting and agreeing to the terms of the [NVIDIA End-User License Agreement](https://go.microsoft.com/fwlink/?linkid=874330). During the installation process, the VM may reboot to complete the driver setup.
25
25
26
26
An extension is also available to install NVIDIA GPU drivers on [Linux N-series VMs](hpccompute-gpu-linux.md).
27
27
28
-
Terms of NVIDIA End-User License Agreement are located here - https://go.microsoft.com/fwlink/?linkid=874330
29
-
30
28
## Prerequisites
31
29
32
30
### Operating system
@@ -41,7 +39,7 @@ This extension supports the following OSs:
41
39
42
40
### Internet connectivity
43
41
44
-
The Microsoft Azure Extension for NVIDIA GPU Drivers requires that the target virtual machine is connected to the internet and have access.
42
+
The Microsoft Azure Extension for NVIDIA GPU Drivers requires that the target VM is connected to the internet and have access.
45
43
46
44
## Extension schema
47
45
@@ -67,7 +65,7 @@ The following JSON shows the schema for the extension.
67
65
}
68
66
```
69
67
70
-
### Property values
68
+
### Properties
71
69
72
70
| Name | Value / Example | Data Type |
73
71
| ---- | ---- | ---- |
@@ -76,6 +74,14 @@ The following JSON shows the schema for the extension.
76
74
| type | NvidiaGpuDriverWindows | string |
77
75
| typeHandlerVersion | 1.2 | int |
78
76
77
+
### Settings
78
+
79
+
All settings are optional. The default behavior is install the latest supported driver as applicable.
80
+
81
+
| Name | Description | Default Value | Valid Values | Data Type |
| installGridND | Install GRID driver on ND series VMs | false | true, false | boolean |
79
85
80
86
## Deployment
81
87
@@ -125,6 +131,8 @@ Set-AzureRmVMExtension
125
131
126
132
### Azure CLI
127
133
134
+
The following example mirrors the above ARM and PowerShell example and also adds custom settings as an example for non-default driver installation. Specifically, it installs a specific GRID driver even if an ND series VM is being provisioned.
135
+
128
136
```azurecli
129
137
az vm extension set `
130
138
--resource-group myResourceGroup `
@@ -133,6 +141,8 @@ az vm extension set `
133
141
--publisher Microsoft.HpcCompute `
134
142
--version 1.2 `
135
143
--settings '{ `
144
+
"driverVersion": "391.03",
145
+
"installGridND": true
136
146
}'
137
147
```
138
148
@@ -175,4 +185,4 @@ If you need more help at any point in this article, you can contact the Azure ex
175
185
## Next steps
176
186
For more information about extensions, see [Virtual machine extensions and features for Windows](features-windows.md).
177
187
178
-
For more information about N-series VMs, see [GPU optimized virtual machine sizes](../windows/sizes-gpu.md).
188
+
For more information about N-series VMs, see [GPU optimized virtual machine sizes](../windows/sizes-gpu.md).
0 commit comments