FlashInfer on ROCm installation#
2026-04-01
5 min read time
System requirements#
To use FlashInfer 0.5.3, you need the following prerequisites:
Install FlashInfer#
To install FlashInfer on ROCm, you have the following options:
Use a prebuilt Docker image with FlashInfer pre-installed#
Docker is the recommended method to set up a FlashInfer environment, as it avoids dependency conflicts. The tested, prebuilt image includes FlashInfer, PyTorch, ROCm, and all other requirements.
Pull the Docker image.
docker pull rocm/flashinfer:flashinfer-0.5.3.amd1_rocm7.2_ubuntu24.04_py3.12_pytorch2.9.1
docker pull rocm/flashinfer:flashinfer-0.5.3.amd1_rocm7.0.2_ubuntu24.04_py3.12_pytorch2.9.1.dev20251204
Start a Docker container using the image.
docker run -it --rm \ --privileged \ --network=host --device=/dev/kfd \ --device=/dev/dri --group-add video \ --name=my_flashinfer --cap-add=SYS_PTRACE \ --security-opt seccomp=unconfined \ --ipc=host --shm-size 16G \ rocm/flashinfer:flashinfer-0.5.3.amd1_rocm7.2_ubuntu24.04_py3.12_pytorch2.9.1
docker run -it --rm \ --privileged \ --network=host --device=/dev/kfd \ --device=/dev/dri --group-add video \ --name=my_flashinfer --cap-add=SYS_PTRACE \ --security-opt seccomp=unconfined \ --ipc=host --shm-size 16G \ rocm/flashinfer:flashinfer-0.5.3.amd1_rocm7.0.2_ubuntu24.04_py3.12_pytorch2.9.1.dev20251204
The above step will create a Docker container with FlashInfer pre-installed. Micromamba is pre-configured inside the container and will automatically start the
baseenvironment.
Install FlashInfer using pip#
Use a base ROCm-enabled PyTorch Docker image and follow these steps to install FlashInfer using pip.
Pull the base ROCm-enabled PyTorch Docker image.
docker pull rocm/pytorch:rocm7.2_ubuntu24.04_py3.12_pytorch_release_2.9.1
docker pull rocm/pytorch:rocm7.0.2_ubuntu24.04_py3.12_pytorch_release_2.9.1
Start a Docker container using the image.
docker run -it --rm \ --privileged \ --network=host --device=/dev/kfd \ --device=/dev/dri --group-add video \ --cap-add=SYS_PTRACE --security-opt seccomp=unconfined \ --ipc=host --shm-size 128G \ rocm/pytorch:rocm7.2_ubuntu24.04_py3.12_pytorch_release_2.9.1
docker run -it --rm \ --privileged \ --network=host --device=/dev/kfd \ --device=/dev/dri --group-add video \ --cap-add=SYS_PTRACE --security-opt seccomp=unconfined \ --ipc=host --shm-size 128G \ rocm/pytorch:rocm7.0.2_ubuntu24.04_py3.12_pytorch_release_2.9.1
After setting up the container, install FlashInfer from the AMD-hosted PyPI repository for ROCm 7.2.0 or ROCm 7.0.2.
pip install amd-flashinfer --index-url https://pypi.amd.com/rocm-7.2.0/simple
pip install amd-flashinfer --index-url https://pypi.amd.com/rocm-7.0.2/simple
Build from source#
FlashInfer on ROCm can be run directly by setting up a Docker container from scratch. A Dockerfile is provided in the ROCm/flashinfer repository to help you get started.
Clone the ROCm/flashinfer repository.
git clone https://github.com/ROCm/flashinfer.git
Enter the directory and build the Dockerfile to create a Docker image.
cd flashinfer docker build \ --build-arg USERNAME=$USER \ --build-arg USER_UID=$(id -u) \ --build-arg USER_GID=$(id -g) \ -f .devcontainer/rocm/Dockerfile \ -t rocm-flashinfer-dev .
Start a Docker container using the image.
docker run -it --rm \ --privileged --network=host --device=/dev/kfd \ --device=/dev/dri --group-add video \ --cap-add=SYS_PTRACE \ --security-opt seccomp=unconfined \ --ipc=host --shm-size 16G \ -v $PWD:/workspace \ rocm-flashinfer-dev
Once you are inside the container, the micromamba environment is automatically activated. You can now install FlashInfer inside it.
cd /workspace python -m pip wheel . --wheel-dir=./dist/ --no-deps --no-build-isolation -v cd dist && pip install amd_flashinfer-*.whl
Test the FlashInfer installation#
Verify that FlashInfer is installed correctly:
python -c "import flashinfer; print(flashinfer.__version__)"
Expected output:
0.5.3+amd.1
If you see the version string above, FlashInfer 0.5.3 has been installed successfully. You can now use FlashInfer in your projects.
AITER Support#
FlashInfer on ROCm has experimental support to use ROCm/aiter as a backend. AITER is a library for efficient attention operations.
Unless you are using the prebuilt docker image with FlashInfer pre-installed (which includes AITER), AITER should be installed on your system to use it as a backend. Use one of the following options to install AITER:
Install AITER by building from source#
Use the following command to install AITER by building from source.
git clone --recursive https://github.com/ROCm/aiter.git
cd aiter
python3 setup.py develop
Install the AITER wheels package using pip#
The wheels package is hosted on the AMD PyPI repository. Use the following command to install AITER with pip.
pip install amd-aiter --index-url https://pypi.amd.com/simple/