Skip to content

Commit 5c9fa43

Browse files
authored
[Docs] Update Release Note (#7302)
1 parent 4aecaa7 commit 5c9fa43

3 files changed

Lines changed: 11 additions & 11 deletions

File tree

dockerfiles/Dockerfile.xpu

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ RUN if [ "$PADDLE_VERSION" = "nightly" ]; then \
2626
# install fastdeploy-xpu
2727
ARG INSTALL_REQUIREMENTS=true
2828
ARG INSTALL_FASTDEPLOY=true
29-
ARG FASTDEPLOY_VERSION=2.4.0
29+
ARG FASTDEPLOY_VERSION=2.5.0
3030

3131
RUN if [ "$INSTALL_FASTDEPLOY" = "true" ]; then \
3232
python -m pip install --no-cache-dir fastdeploy-xpu==${FASTDEPLOY_VERSION} -i https://www.paddlepaddle.org.cn/packages/stable/fastdeploy-xpu-p800/ --extra-index-url https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple; \

docs/get_started/installation/nvidia_gpu.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ The following installation methods are available when your environment meets the
1212

1313
## 1. Pre-built Docker Installation (Recommended)
1414

15-
**Notice**: The pre-built image supports SM 80/86/89/90 architecture GPUs (e.g. A800/H800/L20/L40/4090).
15+
**Notice**: The pre-built image supports SM 80/86/89/90 architecture GPUs (e.g. A800/H800/L20/L40/4090), and requires Python 3.10.
1616

1717
```shell
1818
# CUDA 12.6
@@ -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
29+
# CUDA 12.6
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
35+
# CUDA 12.6
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/
@@ -41,23 +41,23 @@ python -m pip install --pre paddlepaddle-gpu -i https://www.paddlepaddle.org.cn/
4141
Then install fastdeploy. **Do not install from PyPI**. Use the following methods instead (supports SM80/86/89/90 GPU architectures).
4242

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`.
44-
```
44+
```shell
4545
# Install stable release FastDeploy
46-
# CUDA
46+
# CUDA 12.6
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
52+
# CUDA 12.6
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
5656
```
5757

5858
## 3. Build from Source Using Docker
5959

60-
> Note: `dockerfiles/Dockerfile.gpu` currently supports CUDA 12.6 only, targeting SM 80/86/89/90 architectures. To support other architectures, modify ```bash build.sh 1 python false [80,90]``` in the Dockerfile. It's recommended to specify no more than 2 architectures.
60+
> Note: `dockerfiles/Dockerfile.gpu` currently supports CUDA 12.6 only, targeting SM 80/86/89/90 architectures, and requires Python 3.10. To support other architectures, modify ```bash build.sh 1 python false [80,90]``` in the Dockerfile. It's recommended to specify no more than 2 architectures.
6161
6262
```shell
6363
git clone https://github.com/PaddlePaddle/FastDeploy
@@ -86,7 +86,7 @@ The built packages will be in the ```FastDeploy/dist``` directory.
8686

8787
## 5. Precompiled Operator Wheel Packages
8888

89-
FastDeploy provides precompiled GPU operator wheel packages for quick setup without building the entire source code.This method currently supports SM80/90 architecture (e.g., A100/H100) and CUDA 12.6 environments only.
89+
FastDeploy provides precompiled GPU operator wheel packages for quick setup without building the entire source code. This method currently supports **SM80/90 architecture (e.g., A100/H100)** **CUDA 12.6** and **Python 3.10** environments only.
9090

9191
> By default, `build.sh` compiles all custom operators from source.To use the precompiled package, enable it with the `FD_USE_PRECOMPILED` parameter.
9292
> If the precompiled package cannot be downloaded or does not match the current environment, the system will automatically fall back to `4. Build Wheel from Source`.
@@ -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-
> - Supports **GPU, SM80/86/89/90.
127+
> - Currently supports **GPU, SM80/90, CUDA 12.6, Python3.10** only.
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

docs/zh/get_started/installation/nvidia_gpu.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ python -m pip install --pre paddlepaddle-gpu -i https://www.paddlepaddle.org.cn/
4444
再安装 fastdeploy,**注意不要通过pypi源安装**,需要通过如下方式安装(目前支持80/86/89/90四个架构GPU)
4545

4646
**注意**: 稳定版本的FastDeploy搭配稳定版本的PaddlePaddle; 而Nightly Build的FastDeploy则对应Nightly Build的PaddlePaddle。其中 `--extra-index-url` 仅用于安装 fastdeploy-gpu 所需的依赖包,fastdeploy-gpu 本身必须从 `-i` 指定的 Paddle 源安装。
47-
```
47+
```shell
4848
# 安装稳定版本FastDeploy
4949
# CUDA 12.6
5050
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

0 commit comments

Comments
 (0)