Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/userguide/awsneuron-device/enable-awsneuron-managing.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,17 +93,17 @@ spec:

## Selecting by Device UUID

You can specify which GPU devices to use or exclude using annotations:
You can specify which Neuron devices to use or exclude using annotations:

```yaml
apiVersion: v1
kind: Pod
metadata:
name: poddemo
annotations:
# Use specific GPU devices (comma-separated list)
# Use specific Neuron devices (comma-separated list)
aws.amazon.com/use-gpuuuid: "node1-AWSNeuron-0,node1-AWSNeuron-1"
# Or exclude specific GPU devices (comma-separated list)
# Or exclude specific Neuron devices (comma-separated list)
aws.amazon.com/nouse-gpuuuid: "node1-AWSNeuron-2,node1-AWSNeuron-3"
spec:
# ... rest of pod spec
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -92,17 +92,17 @@ spec:

## 按设备 UUID 选择

可通过注解指定使用或排除特定 GPU 设备:
可通过注解指定使用或排除特定 Neuron 设备:

```yaml
apiVersion: v1
kind: Pod
metadata:
name: poddemo
annotations:
# 指定使用的 GPU 设备 (逗号分隔列表)
# 指定使用的 Neuron 设备 (逗号分隔列表)
aws.amazon.com/use-gpuuuid: "node1-AWSNeuron-0,node1-AWSNeuron-1"
# 或排除特定 GPU 设备 (逗号分隔列表)
# 或排除特定 Neuron 设备 (逗号分隔列表)
aws.amazon.com/nouse-gpuuuid: "node1-AWSNeuron-2,node1-AWSNeuron-3"
spec:
# ... 其他 pod 配置
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,17 +93,17 @@ spec:

## 按设备 UUID 选择

可通过注解指定使用或排除特定 GPU 设备:
可通过注解指定使用或排除特定 Neuron 设备:

```yaml
apiVersion: v1
kind: Pod
metadata:
name: poddemo
annotations:
# 指定使用的 GPU 设备 (逗号分隔列表)
# 指定使用的 Neuron 设备 (逗号分隔列表)
aws.amazon.com/use-gpuuuid: "node1-AWSNeuron-0,node1-AWSNeuron-1"
# 或排除特定 GPU 设备 (逗号分隔列表)
# 或排除特定 Neuron 设备 (逗号分隔列表)
aws.amazon.com/nouse-gpuuuid: "node1-AWSNeuron-2,node1-AWSNeuron-3"
spec:
# ... 其他 pod 配置
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -92,17 +92,17 @@ spec:

## Selecting by Device UUID

You can specify which GPU devices to use or exclude using annotations:
You can specify which Neuron devices to use or exclude using annotations:

```yaml
apiVersion: v1
kind: Pod
metadata:
name: poddemo
annotations:
# Use specific GPU devices (comma-separated list)
# Use specific Neuron devices (comma-separated list)
aws.amazon.com/use-gpuuuid: "node1-AWSNeuron-0,node1-AWSNeuron-1"
# Or exclude specific GPU devices (comma-separated list)
# Or exclude specific Neuron devices (comma-separated list)
aws.amazon.com/nouse-gpuuuid: "node1-AWSNeuron-2,node1-AWSNeuron-3"
spec:
# ... rest of pod spec
Expand Down
Loading