Skip to content

Commit 01c0000

Browse files
authored
chore: bump v0.4.9.post3 (#8265)
1 parent 0dfe249 commit 01c0000

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

benchmark/deepseek_v3/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Add [performance optimization options](#performance-optimization-options) as nee
3333

3434
```bash
3535
# Installation
36-
pip install "sglang[all]>=0.4.9.post2"
36+
pip install "sglang[all]>=0.4.9.post3"
3737

3838
# Launch
3939
python3 -m sglang.launch_server --model deepseek-ai/DeepSeek-V3 --tp 8 --trust-remote-code

docs/references/setup_github_runner.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ docker pull nvidia/cuda:12.1.1-devel-ubuntu22.04
1111
# Nvidia
1212
docker run --shm-size 128g -it -v /tmp/huggingface:/hf_home --gpus all nvidia/cuda:12.1.1-devel-ubuntu22.04 /bin/bash
1313
# AMD
14-
docker run --rm --device=/dev/kfd --device=/dev/dri --group-add video --shm-size 128g -it -v /tmp/huggingface:/hf_home lmsysorg/sglang:v0.4.9.post2-rocm630 /bin/bash
14+
docker run --rm --device=/dev/kfd --device=/dev/dri --group-add video --shm-size 128g -it -v /tmp/huggingface:/hf_home lmsysorg/sglang:v0.4.9.post3-rocm630 /bin/bash
1515
# AMD just the last 2 GPUs
16-
docker run --rm --device=/dev/kfd --device=/dev/dri/renderD176 --device=/dev/dri/renderD184 --group-add video --shm-size 128g -it -v /tmp/huggingface:/hf_home lmsysorg/sglang:v0.4.9.post2-rocm630 /bin/bash
16+
docker run --rm --device=/dev/kfd --device=/dev/dri/renderD176 --device=/dev/dri/renderD184 --group-add video --shm-size 128g -it -v /tmp/huggingface:/hf_home lmsysorg/sglang:v0.4.9.post3-rocm630 /bin/bash
1717
```
1818

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

docs/start/install.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ It is recommended to use uv to install the dependencies for faster installation:
1111
```bash
1212
pip install --upgrade pip
1313
pip install uv
14-
uv pip install "sglang[all]>=0.4.9.post2"
14+
uv pip install "sglang[all]>=0.4.9.post3"
1515
```
1616

1717
**Quick Fixes to Common Problems**
@@ -27,7 +27,7 @@ uv pip install "sglang[all]>=0.4.9.post2"
2727

2828
```bash
2929
# Use the last release branch
30-
git clone -b v0.4.9.post2 https://github.com/sgl-project/sglang.git
30+
git clone -b v0.4.9.post3 https://github.com/sgl-project/sglang.git
3131
cd sglang
3232

3333
pip install --upgrade pip
@@ -42,7 +42,7 @@ Note: For AMD ROCm system with Instinct/MI GPUs, do following instead:
4242

4343
```bash
4444
# Use the last release branch
45-
git clone -b v0.4.9.post2 https://github.com/sgl-project/sglang.git
45+
git clone -b v0.4.9.post3 https://github.com/sgl-project/sglang.git
4646
cd sglang
4747

4848
pip install --upgrade pip
@@ -71,7 +71,7 @@ docker run --gpus all \
7171
Note: For AMD ROCm system with Instinct/MI GPUs, it is recommended to use `docker/Dockerfile.rocm` to build images, example and usage as below:
7272

7373
```bash
74-
docker build --build-arg SGL_BRANCH=v0.4.9.post2 -t v0.4.9.post2-rocm630 -f Dockerfile.rocm .
74+
docker build --build-arg SGL_BRANCH=v0.4.9.post3 -t v0.4.9.post3-rocm630 -f Dockerfile.rocm .
7575

7676
alias drun='docker run -it --rm --network=host --device=/dev/kfd --device=/dev/dri --ipc=host \
7777
--shm-size 16G --group-add video --cap-add=SYS_PTRACE --security-opt seccomp=unconfined \
@@ -80,11 +80,11 @@ alias drun='docker run -it --rm --network=host --device=/dev/kfd --device=/dev/d
8080
drun -p 30000:30000 \
8181
-v ~/.cache/huggingface:/root/.cache/huggingface \
8282
--env "HF_TOKEN=<secret>" \
83-
v0.4.9.post2-rocm630 \
83+
v0.4.9.post3-rocm630 \
8484
python3 -m sglang.launch_server --model-path meta-llama/Llama-3.1-8B-Instruct --host 0.0.0.0 --port 30000
8585

8686
# Till flashinfer backend available, --attention-backend triton --sampling-backend pytorch are set by default
87-
drun v0.4.9.post2-rocm630 python3 -m sglang.bench_one_batch --batch-size 32 --input 1024 --output 128 --model amd/Meta-Llama-3.1-8B-Instruct-FP8-KV --tp 8 --quantization fp8
87+
drun v0.4.9.post3-rocm630 python3 -m sglang.bench_one_batch --batch-size 32 --input 1024 --output 128 --model amd/Meta-Llama-3.1-8B-Instruct-FP8-KV --tp 8 --quantization fp8
8888
```
8989

9090
## Method 4: Using docker compose

python/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "sglang"
7-
version = "0.4.9.post2"
7+
version = "0.4.9.post3"
88
description = "SGLang is yet another fast serving framework for large language models and vision language models."
99
readme = "README.md"
1010
requires-python = ">=3.8"

python/sglang/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.4.9.post2"
1+
__version__ = "0.4.9.post3"

0 commit comments

Comments
 (0)