@@ -11,7 +11,7 @@ It is recommended to use uv to install the dependencies for faster installation:
1111``` bash 
1212pip install --upgrade pip
1313pip install uv
14- uv pip install " sglang[all]>=0.4.7.post1 " 
14+ uv pip install " sglang[all]>=0.4.8 " 
1515``` 
1616
1717** Quick Fixes to Common Problems** 
@@ -27,7 +27,7 @@ uv pip install "sglang[all]>=0.4.7.post1"
2727
2828``` bash 
2929#  Use the last release branch
30- git clone -b v0.4.7.post1  https://github.com/sgl-project/sglang.git
30+ git clone -b v0.4.8  https://github.com/sgl-project/sglang.git
3131cd  sglang
3232
3333pip 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.7.post1  https://github.com/sgl-project/sglang.git
45+ git clone -b v0.4.8  https://github.com/sgl-project/sglang.git
4646cd  sglang
4747
4848pip install --upgrade pip
@@ -71,7 +71,7 @@ docker run --gpus all \
7171Note: 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.7.post1  -t v0.4.7.post1 -rocm630 -f Dockerfile.rocm . 
74+ docker build --build-arg SGL_BRANCH=v0.4.8  -t v0.4.8 -rocm630 -f Dockerfile.rocm . 
7575
7676alias  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
8080drun -p 30000:30000 \
8181    -v ~ /.cache/huggingface:/root/.cache/huggingface \
8282    --env " HF_TOKEN=<secret>"   \
83-     v0.4.7.post1 -rocm630 \
83+     v0.4.8 -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.7.post1 -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.8 -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  
0 commit comments