Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 1d9d626

Browse files
authoredJan 30, 2022
Fix single/mixed AKS multi GPU instance strategy
Fixed typo between strategies
1 parent f4f53d9 commit 1d9d626

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed
 

‎articles/aks/gpu-multi-instance.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -164,17 +164,17 @@ Use the `kubectl` run command to schedule work using single strategy:
164164
kubectl run -it --rm \
165165
--image=nvidia/cuda:11.0-base \
166166
--restart=Never \
167-
--limits=nvidia.com/mig-1g.5gb=1 \
168-
mixed-strategy-example -- nvidia-smi -L
167+
--limits=nvidia.com/gpu=1 \
168+
single-strategy-example -- nvidia-smi -L
169169
```
170170

171171
Use the `kubectl` run command to schedule work using mixed strategy:
172172
```
173173
kubectl run -it --rm \
174174
--image=nvidia/cuda:11.0-base \
175175
--restart=Never \
176-
--limits=nvidia.com/gpu=1 \
177-
single-strategy-example -- nvidia-smi -L
176+
--limits=nvidia.com/mig-1g.5gb=1 \
177+
mixed-strategy-example -- nvidia-smi -L
178178
```
179179

180180

0 commit comments

Comments
 (0)
Please sign in to comment.