@@ -6,15 +6,15 @@ You can install SGLang using any of the methods below.
66```
77pip install --upgrade pip
88pip install sgl-kernel --force-reinstall --no-deps
9- pip install "sglang[all]>=0.4.2.post2 " --find-links https://flashinfer.ai/whl/cu124/torch2.5/flashinfer/
9+ pip install "sglang[all]>=0.4.2.post3 " --find-links https://flashinfer.ai/whl/cu124/torch2.5/flashinfer/
1010```
1111
1212Note: Please check the [ FlashInfer installation doc] ( https://docs.flashinfer.ai/installation.html ) to install the proper version according to your PyTorch and CUDA versions.
1313
1414## Method 2: From source
1515```
1616# Use the last release branch
17- git clone -b v0.4.2.post2 https://github.com/sgl-project/sglang.git
17+ git clone -b v0.4.2.post3 https://github.com/sgl-project/sglang.git
1818cd sglang
1919
2020pip install --upgrade pip
@@ -28,7 +28,7 @@ Note: To AMD ROCm system with Instinct/MI GPUs, do following instead:
2828
2929```
3030# Use the last release branch
31- git clone -b v0.4.2.post2 https://github.com/sgl-project/sglang.git
31+ git clone -b v0.4.2.post3 https://github.com/sgl-project/sglang.git
3232cd sglang
3333
3434pip install --upgrade pip
@@ -56,7 +56,7 @@ docker run --gpus all \
5656Note: To AMD ROCm system with Instinct/MI GPUs, it is recommended to use ` docker/Dockerfile.rocm ` to build images, example and usage as below:
5757
5858``` bash
59- docker build --build-arg SGL_BRANCH=v0.4.2.post2 -t v0.4.2.post2 -rocm630 -f Dockerfile.rocm .
59+ docker build --build-arg SGL_BRANCH=v0.4.2.post3 -t v0.4.2.post3 -rocm630 -f Dockerfile.rocm .
6060
6161alias drun=' docker run -it --rm --network=host --device=/dev/kfd --device=/dev/dri --ipc=host \
6262 --shm-size 16G --group-add video --cap-add=SYS_PTRACE --security-opt seccomp=unconfined \
@@ -65,11 +65,11 @@ alias drun='docker run -it --rm --network=host --device=/dev/kfd --device=/dev/d
6565drun -p 30000:30000 \
6666 -v ~ /.cache/huggingface:/root/.cache/huggingface \
6767 --env " HF_TOKEN=<secret>" \
68- v0.4.2.post2 -rocm630 \
68+ v0.4.2.post3 -rocm630 \
6969 python3 -m sglang.launch_server --model-path meta-llama/Llama-3.1-8B-Instruct --host 0.0.0.0 --port 30000
7070
7171# Till flashinfer backend available, --attention-backend triton --sampling-backend pytorch are set by default
72- drun v0.4.2.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
72+ drun v0.4.2.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
7373```
7474
7575## Method 4: Using docker compose
0 commit comments