From 5ed48ebc202a8337455ae8db872a5858ac21a9e4 Mon Sep 17 00:00:00 2001 From: LDOUBLEV Date: Tue, 21 Dec 2021 13:58:35 +0800 Subject: [PATCH] fix cpp_doc --- deploy/cpp_infer/readme.md | 4 ++-- deploy/cpp_infer/readme_en.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/deploy/cpp_infer/readme.md b/deploy/cpp_infer/readme.md index 92ef70b6..80017b78 100644 --- a/deploy/cpp_infer/readme.md +++ b/deploy/cpp_infer/readme.md @@ -103,7 +103,7 @@ opencv3/ #### 1.2.1 直接下载安装 -* [Paddle预测库官网](https://www.paddlepaddle.org.cn/documentation/docs/zh/2.0/guides/05_inference_deployment/inference/build_and_install_lib_cn.html) 上提供了不同cuda版本的Linux预测库,可以在官网查看并选择合适的预测库版本(*建议选择paddle版本>=2.0.1版本的预测库* )。 +* [Paddle预测库官网](https://paddle-inference.readthedocs.io/en/latest/user_guides/download_lib.html) 上提供了不同cuda版本的Linux预测库,可以在官网查看并选择合适的预测库版本(*建议选择paddle版本>=2.0.1版本的预测库* )。 * 下载之后使用下面的方法解压。 @@ -119,7 +119,7 @@ tar -xf paddle_inference.tgz ```shell git clone https://github.com/PaddlePaddle/Paddle.git -git checkout release/2.1 +git checkout dygraph ``` * 进入Paddle目录后,编译方法如下。 diff --git a/deploy/cpp_infer/readme_en.md b/deploy/cpp_infer/readme_en.md index fd6d953d..c9024c06 100644 --- a/deploy/cpp_infer/readme_en.md +++ b/deploy/cpp_infer/readme_en.md @@ -79,7 +79,7 @@ opencv3/ #### 1.2.1 Direct download and installation -[Paddle inference library official website](https://www.paddlepaddle.org.cn/documentation/docs/zh/2.0/guides/05_inference_deployment/inference/build_and_install_lib_cn.html). You can view and select the appropriate version of the inference library on the official website. +[Paddle inference library official website](https://paddle-inference.readthedocs.io/en/latest/user_guides/download_lib.html). You can view and select the appropriate version of the inference library on the official website. * After downloading, use the following method to uncompress. @@ -97,7 +97,7 @@ Finally you can see the following files in the folder of `paddle_inference/`. ```shell git clone https://github.com/PaddlePaddle/Paddle.git -git checkout release/2.1 +git checkout dygraph ``` * After entering the Paddle directory, the commands to compile the paddle inference library are as follows. -- GitLab