Get started
Pull the ROCm SGLang 0.15.3post1 Docker image.
docker pull rocm/sgl-dev:v0.5.13.post1-ubuntu24.04-py3.14-rocm7.14
Start the Docker container.
docker run -it --rm \
--device /dev/kfd \
--device /dev/dri \
--network=host \
--ipc=host \
--group-add=video \
--cap-add=SYS_PTRACE \
--security-opt seccomp=unconfined \
-v <path/to/your/models>:/app/models \
-e HF_HOME="/app/models" \
rocm/sgl-dev:v0.5.13.post1-ubuntu24.04-py3.14-rocm7.14 \
bash
Pull the ROCm SGLang 0.15.3post1 Docker image.
docker pull rocm/sgl-dev:v0.5.13.post1-ubuntu24.04-py3.14-rocm7.14
Start the Docker container.
docker run -it --rm \
--device /dev/kfd \
--device /dev/dri \
--network=host \
--ipc=host \
--group-add=video \
--cap-add=SYS_PTRACE \
--security-opt seccomp=unconfined \
-v <path/to/your/models>:/app/models \
-e HF_HOME="/app/models" \
rocm/sgl-dev:v0.5.13.post1-ubuntu24.04-py3.14-rocm7.14 \
bash
Pull the ROCm SGLang 0.15.3post1 Docker image.
docker pull rocm/sgl-dev:v0.5.13.post1-ubuntu24.04-py3.14-rocm7.14
Start the Docker container. On Radeon GPUs, disable AITER by unsetting
SGLANG_USE_AITER and SGLANG_ROCM_FUSED_DECODE_MLA. See the
known issue for more information.
docker run -it --rm \
--device /dev/kfd \
--device /dev/dri \
--network=host \
--ipc=host \
--group-add=video \
--cap-add=SYS_PTRACE \
--security-opt seccomp=unconfined \
-v <path/to/your/models>:/app/models \
-e HF_HOME="/app/models" \
-e SGLANG_USE_AITER=false \
-e SGLANG_ROCM_FUSED_DECODE_MLA=false \
rocm/sgl-dev:v0.5.13.post1-ubuntu24.04-py3.14-rocm7.14 \
bash
After setting up your environment, follow the SGLang 0.15.3post1 usage
documentation to get started: Basic usage (SGLang docs).
Known issues
ROCm 7.14 introduces initial SGLang support for AMD Radeon GPUs. Radeon GPU
users should disable AITER and unset SGLANG_ROCM_FUSED_DECODE_MLA, as
both are enabled by default in the SGLang Docker image and may cause some
workloads to fail. See the SGLang environment variables reference
for more details.
export SGLANG_USE_AITER=false
export SGLANG_ROCM_FUSED_DECODE_MLA=false
Additionally, some models may not function correctly on Radeon GPUs,
including certain Mixture-of-Experts (MoE) models (such as GPT-OSS-20B and
MiniMax-M2.7) and Qwen3-ASR models. Users experiencing these issues are
recommended to use the latest upstream SGLang versions, which will include
the necessary fixes once they are merged.