Skip to content

Commit d024de3

Browse files
Revise NVIDIA GPU installation instructions
Updated installation instructions for PaddlePaddle and FastDeploy to remove specific CUDA version mentions and clarify support for multiple GPU architectures.
1 parent 3da84fc commit d024de3

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

docs/get_started/installation/nvidia_gpu.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,13 @@ docker pull ccr-2vdh3abv-pub.cnc.bj.baidubce.com/paddlepaddle/fastdeploy-cuda-12
2626
First install paddlepaddle-gpu. For detailed instructions, refer to [PaddlePaddle Installation](https://www.paddlepaddle.org.cn/en/install/quick?docurl=/documentation/docs/en/develop/install/pip/linux-pip_en.html)
2727
```shell
2828
# Install stable release
29-
# CUDA 12.6
29+
# CUDA
3030
python -m pip install paddlepaddle-gpu==3.3.1 -i https://www.paddlepaddle.org.cn/packages/stable/cu126/
3131
# CUDA 12.9
3232
python -m pip install paddlepaddle-gpu==3.3.1 -i https://www.paddlepaddle.org.cn/packages/stable/cu129/
3333

3434
# Install latest Nightly build
35-
# CUDA 12.6
35+
# CUDA
3636
python -m pip install --pre paddlepaddle-gpu -i https://www.paddlepaddle.org.cn/packages/nightly/cu126/
3737
# CUDA 12.9
3838
python -m pip install --pre paddlepaddle-gpu -i https://www.paddlepaddle.org.cn/packages/nightly/cu129/
@@ -43,13 +43,13 @@ Then install fastdeploy. **Do not install from PyPI**. Use the following methods
4343
**Note**: Stable FastDeploy release pairs with stable PaddlePaddle; Nightly Build FastDeploy pairs with Nightly Build PaddlePaddle. The `--extra-index-url` is only used for downloading fastdeploy-gpu's dependencies; fastdeploy-gpu itself must be installed from the Paddle source specified by `-i`.
4444
```
4545
# Install stable release FastDeploy
46-
# CUDA 12.6
46+
# CUDA
4747
python -m pip install fastdeploy-gpu==2.5.0 -i https://www.paddlepaddle.org.cn/packages/stable/cu126/ --extra-index-url https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple
4848
# CUDA 12.9
4949
python -m pip install fastdeploy-gpu==2.5.0 -i https://www.paddlepaddle.org.cn/packages/stable/cu129/ --extra-index-url https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple
5050
5151
# Install Nightly Build FastDeploy
52-
# CUDA 12.6
52+
# CUDA
5353
python -m pip install fastdeploy-gpu -i https://www.paddlepaddle.org.cn/packages/nightly/cu126/ --extra-index-url https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple
5454
# CUDA 12.9
5555
python -m pip install fastdeploy-gpu -i https://www.paddlepaddle.org.cn/packages/nightly/cu129/ --extra-index-url https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple
@@ -124,7 +124,7 @@ After the build completes, the operator binaries can be found in `FastDeploy/fas
124124
> **Notes:**
125125
>
126126
> - This mode prioritizes downloading precompiled GPU operator wheels to reduce build time.
127-
> - Currently supports **GPU, SM80/90, CUDA 12.6, Python3.10** only.
127+
> - Supports **GPU, SM80/86/89/90.
128128
> - For custom architectures or modified operator logic, please use **source compilation (Section 4)**.
129129
> - You can check whether the precompiled wheel for a specific commit has been successfully built on the [FastDeploy CI Build Status Page](https://github.com/PaddlePaddle/FastDeploy/actions/workflows/ce_job.yml).
130130

0 commit comments

Comments
 (0)