Skip to content

Commit

Permalink
Update setup_github_runner.md (#1952)
Browse files Browse the repository at this point in the history
  • Loading branch information
merrymercy authored Nov 8, 2024
1 parent 691808d commit a71a44f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/developer/setup_github_runner.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Set Up Self-hosted Runners for GitHub Action
# Set Up Self-Hosted Runners for GitHub Action

## Add a Runner

Expand All @@ -9,9 +9,9 @@ You can mount a folder for the shared huggingface model weights cache. The comma
```
docker pull nvidia/cuda:12.1.1-devel-ubuntu22.04
# Nvidia
docker run --shm-size 64g -it -v /tmp/huggingface:/hf_home --gpus all nvidia/cuda:12.1.1-devel-ubuntu22.04 /bin/bash
docker run --shm-size 128g -it -v /tmp/huggingface:/hf_home --gpus all nvidia/cuda:12.1.1-devel-ubuntu22.04 /bin/bash
# AMD
docker run --rm --device=/dev/kfd --device=/dev/dri --group-add video --shm-size 64g -it -v /tmp/huggingface:/hf_home henryx/haisgl:sgl0.3.1.post3_vllm0.6.0_triton3.0.0_rocm6.2.1 /bin/bash
docker run --rm --device=/dev/kfd --device=/dev/dri --group-add video --shm-size 128g -it -v /tmp/huggingface:/hf_home henryx/haisgl:sgl0.3.1.post3_vllm0.6.0_triton3.0.0_rocm6.2.1 /bin/bash
```

### Step 2: Configure the runner by `config.sh`
Expand Down

0 comments on commit a71a44f

Please sign in to comment.