Skip to content

Commit 19e96e5

Browse files
authored
bump v0.4.4.post3 (#4878)
1 parent aa08aea commit 19e96e5

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

docker/Dockerfile.rocm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Usage (to build SGLang ROCm docker image):
2-
# docker build --build-arg SGL_BRANCH=v0.4.4.post2 -t v0.4.4.post2-rocm630 -f Dockerfile.rocm .
2+
# docker build --build-arg SGL_BRANCH=v0.4.4.post3 -t v0.4.4.post3-rocm630 -f Dockerfile.rocm .
33

44
# default base image
55
ARG BASE_IMAGE="rocm/sgl-dev:vllm20250114"

docs/developer/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.4.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.4.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.4.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.4.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.4.post2" --find-links https://flashinfer.ai/whl/cu124/torch2.5/flashinfer-python
14+
uv pip install "sglang[all]>=0.4.4.post3" --find-links https://flashinfer.ai/whl/cu124/torch2.5/flashinfer-python
1515
```
1616

1717
**Quick Fixes to Common Problems**
@@ -27,7 +27,7 @@ uv pip install "sglang[all]>=0.4.4.post2" --find-links https://flashinfer.ai/whl
2727
## Method 2: From source
2828
```
2929
# Use the last release branch
30-
git clone -b v0.4.4.post2 https://github.com/sgl-project/sglang.git
30+
git clone -b v0.4.4.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
```
4444
# Use the last release branch
45-
git clone -b v0.4.4.post2 https://github.com/sgl-project/sglang.git
45+
git clone -b v0.4.4.post3 https://github.com/sgl-project/sglang.git
4646
cd sglang
4747
4848
pip install --upgrade pip
@@ -70,7 +70,7 @@ docker run --gpus all \
7070
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:
7171

7272
```bash
73-
docker build --build-arg SGL_BRANCH=v0.4.4.post2 -t v0.4.4.post2-rocm630 -f Dockerfile.rocm .
73+
docker build --build-arg SGL_BRANCH=v0.4.4.post3 -t v0.4.4.post3-rocm630 -f Dockerfile.rocm .
7474

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

8585
# Till flashinfer backend available, --attention-backend triton --sampling-backend pytorch are set by default
86-
drun v0.4.4.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
86+
drun v0.4.4.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
8787
```
8888

8989
## 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.4.post2"
7+
version = "0.4.4.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.4.post2"
1+
__version__ = "0.4.4.post3"

0 commit comments

Comments
 (0)