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/iot-edge/configure-connect-verify-gpu.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@ title: Configure and connect an IoT Edge module with a GPU
3
3
description: Configure your environment to connect and verify your GPU to process modules from your IoT Edge device.
4
4
author: sethmanheim
5
5
ms.author: sethm
6
-
ms.date: 06/05/2025
6
+
ms.date: 04/01/2026
7
7
ms.topic: tutorial
8
8
ms.service: azure-iot-edge
9
9
services: iot-edge
@@ -89,10 +89,10 @@ Now that you have a GPU-optimized VM, install the [NVIDIA extension](/azure/virt
89
89
90
90
1. With an NVIDIA module, we'll use the [NVIDIA System Management Interface program](https://developer.download.nvidia.com/compute/DCGM/docs/nvidia-smi-367.38.pdf), also known as `nvidia-smi`.
91
91
92
-
From your device, install the `nvidia-smi` package based on your version of Ubuntu. For this tutorial, we'll install `nvidia-utils-515` for Ubuntu 20.04. Select `Y` when prompted in the installation.
92
+
From your device, install the `nvidia-smi` package based on your version of Ubuntu. For example, on Ubuntu 22.04, install `nvidia-utils-535`. Select `Y` when prompted in the installation.
93
93
94
94
```bash
95
-
sudo apt install nvidia-utils-515
95
+
sudo apt install nvidia-utils-535
96
96
```
97
97
98
98
Here's a list of all `nvidia-smi` versions. If you run `nvidia-smi` without installing it first, this list prints in your console.
@@ -114,7 +114,7 @@ Now that you have a GPU-optimized VM, install the [NVIDIA extension](/azure/virt
114
114
115
115
## Enable a module with GPU acceleration
116
116
117
-
There are different ways to enable an IoT Edge module so that it uses a GPU for processing. One way is to configure an existing IoT Edge module on your device to become GPU-accelerated. Another way is to use a prefabricated container module, for example, a module from [NVIDIA DIGITS](https://developer.nvidia.com/digits) that's already GPU-optimized. Let's see how both ways are done.
117
+
There are different ways to enable an IoT Edge module so that it uses a GPU for processing. One way is to configure an existing IoT Edge module on your device to become GPU-accelerated. Another way is to use a prefabricated container module that's already GPU-optimized. Let's see how both ways are done.
118
118
119
119
### Enable GPU in an existing module using DeviceRequests
120
120
@@ -169,7 +169,7 @@ If you have an existing module on your IoT Edge device, adding a configuration u
169
169
170
170
### Enable a GPU in a prefabricated NVIDIA module
171
171
172
-
Let's add an [NVIDIA DIGITS](https://docs.nvidia.com/deeplearning/digits/index.html) module to the IoT Edge device and then allocate a GPU to the module by setting its environment variables. This NVIDIA module is already in a Docker container.
172
+
Let's add an [NVIDIA CUDA](https://hub.docker.com/r/nvidia/cuda) container module to the IoT Edge device and then allocate a GPU to the module by setting its environment variables. This NVIDIA module is already in a Docker container.
173
173
174
174
1. Select your IoT Edge device in the Azure portal from your IoT Hub's **Devices** menu.
175
175
@@ -179,7 +179,7 @@ Let's add an [NVIDIA DIGITS](https://docs.nvidia.com/deeplearning/digits/index.h
179
179
180
180
1. Provide a name in the **IoT Edge Module Name** field.
181
181
182
-
1. Under the **Module Settings** tab, add `nvidia/digits:6.0` to the **Image URI** field.
182
+
1. Under the **Module Settings** tab, add `nvidia/cuda:12.6.3-base-ubuntu22.04` to the **Image URI** field.
183
183
184
184
1. Select the **Environment Variables** tab.
185
185
@@ -207,7 +207,7 @@ Let's add an [NVIDIA DIGITS](https://docs.nvidia.com/deeplearning/digits/index.h
207
207
:::image type="content" source="media/configure-connect-verify-gpu/iot-edge-list.png" alt-text="Screenshot of the result of the 'iotedge list' command.":::
208
208
209
209
> [!NOTE]
210
-
> For more information on the **NVIDIA DIGITS** container module, see the [Deep Learning Digits Documentation](https://docs.nvidia.com/deeplearning/digits/digits-container-user-guide/index.html#digitsovr).
210
+
> For more information on GPU-optimized NVIDIA containers, see the [NVIDIA GPU Cloud (NGC) Catalog](https://catalog.ngc.nvidia.com/).
0 commit comments