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
2 changes: 1 addition & 1 deletion docs/contributor/contribute-docs.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ Contributors mainly contribute documentation to the current version.

It's important for your article to specify metadata concerning an article at the top of the Markdown file, in a section called **Front Matter**.

For now, let's take a look at a quick example which should explain the most relevant entries in **Front Matter**:
Here is a quick example covering the most relevant **Front Matter** entries:

```yaml
---
Expand Down
2 changes: 1 addition & 1 deletion docs/installation/prerequisites.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ sudo systemctl daemon-reload && sudo systemctl restart containerd

### Label your nodes

Label your GPU nodes for scheduling with HAMi by adding the label "gpu=on". Without this label, the nodes cannot be managed by our scheduler.
Label your GPU nodes for scheduling with HAMi by adding the label "gpu=on". Without this label, the nodes cannot be managed by the HAMi scheduler.

```bash
kubectl label nodes {nodeid} gpu=on
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ metadata:
name: gpu-pod
annotations:
nvidia.com/use-gputype: "A100,V100"
#In this example, we want to run this job on A100 or V100
#In this example, the job runs on A100 or V100
spec:
containers:
- name: ubuntu-container
Expand All @@ -22,4 +22,4 @@ spec:
nvidia.com/gpu: 2 # requesting 2 vGPUs
```

> **NOTICE:** *You can assign this task to multiple GPU types, use comma to separate,In this example, we want to run this job on A100 or V100*
> **NOTICE:** *You can assign this task to multiple GPU types, use comma to separate. In this example, the job runs on A100 or V100.*
Loading