mirror of
https://github.com/PaddlePaddle/FastDeploy.git
synced 2025-10-16 05:30:58 +08:00
change the location of sdk files
This commit is contained in:
44
docs/quick_start/prebuilt_libraries.md
Normal file
44
docs/quick_start/prebuilt_libraries.md
Normal file
@@ -0,0 +1,44 @@
|
|||||||
|
# FastDeploy 预编译 C++ 库
|
||||||
|
|
||||||
|
FastDeploy提供了在Windows/Linux/Mac上的预先编译CPP部署库,开发者可以直接下载后使用,也可以自行编译代码。
|
||||||
|
|
||||||
|
## 环境依赖
|
||||||
|
|
||||||
|
- cuda >= 11.2
|
||||||
|
- cudnn >= 8.0
|
||||||
|
- g++ >= 5.4(推荐8.2)
|
||||||
|
|
||||||
|
## 下载地址
|
||||||
|
|
||||||
|
### Linux x64平台
|
||||||
|
|
||||||
|
| 部署库下载地址 | 硬件 | 说明 |
|
||||||
|
| :------------- | :--- | :--- |
|
||||||
|
| [fastdeploy-linux-x64-0.2.0.tgz](https://bj.bcebos.com/paddlehub/fastdeploy/cpp/fastdeploy-linux-x64-0.2.0.tgz) | CPU | g++ 8.2编译产出 |
|
||||||
|
| [fastdeploy-linux-x64-gpu-0.2.0.tgz](https://bj.bcebos.com/paddlehub/fastdeploy/cpp/fastdeploy-linux-x64-gpu-0.2.0.tgz) | CPU/GPU | g++ 8.2, cuda 11.2, cudnn 8.2编译产出 |
|
||||||
|
|
||||||
|
### Windows 10 x64平台
|
||||||
|
|
||||||
|
| 部署库下载地址 | 硬件 | 说明 |
|
||||||
|
| :------------- | :--- | :--- |
|
||||||
|
| [fastdeploy-win-x64-0.2.0.zip](https://bj.bcebos.com/paddlehub/fastdeploy/cpp/fastdeploy-win-x64-0.2.0.zip) | CPU | Visual Studio 16 2019 编译产出 |
|
||||||
|
| [fastdeploy-win-x64-gpu-0.2.0.zip](https://bj.bcebos.com/paddlehub/fastdeploy/cpp/fastdeploy-win-x64-gpu-0.2.0.zip) | CPU/GPU | Visual Studio 16 2019,cuda 11.2, cudnn 8.2编译产出 |
|
||||||
|
|
||||||
|
### Linux aarch64平台
|
||||||
|
|
||||||
|
| 安装包 | 硬件 |
|
||||||
|
| :---- | :-- |
|
||||||
|
| [comming...] | CPU |
|
||||||
|
| [comming...] | Jetson |
|
||||||
|
|
||||||
|
### Mac OSX平台
|
||||||
|
|
||||||
|
| 部署库下载地址 | 架构 |硬件 |
|
||||||
|
| :---- | :-- | :------ |
|
||||||
|
| [fastdeploy-osx-x86_64-0.2.0.tgz](https://bj.bcebos.com/paddlehub/fastdeploy/cpp/fastdeploy-osx-x86_64-0.2.0.tgz) | x86 | CPU |
|
||||||
|
| [fastdeploy-osx-arm64-0.2.0.tgz](https://bj.bcebos.com/paddlehub/fastdeploy/cpp/fastdeploy-osx-arm64-0.2.0.tgz) | arm64 | CPU |
|
||||||
|
|
||||||
|
## 其它文档
|
||||||
|
|
||||||
|
- [预编译Python安装包](./prebuilt_wheels.md)
|
||||||
|
- [视觉模型C++/Python部署示例](../../examples/vision/)
|
72
docs/quick_start/prebuilt_wheels.md
Normal file
72
docs/quick_start/prebuilt_wheels.md
Normal file
@@ -0,0 +1,72 @@
|
|||||||
|
# FastDeploy 预编编译Python Wheel包
|
||||||
|
|
||||||
|
FastDeploy提供了在Windows/Linux/Mac上的预先编译Python Wheel包,开发者可以直接下载后安装,也可以自行编译代码。
|
||||||
|
|
||||||
|
使用如下命令即可在Linux的Pythotn 3.8环境安装支持CPU部署的FastDeploy
|
||||||
|
```
|
||||||
|
python -m pip install fastdeploy_python-0.2.0-cp38-cp38-manylinux1_x86_64.whl
|
||||||
|
```
|
||||||
|
|
||||||
|
## 注意事项
|
||||||
|
- 不要重复安装`fastdeploy-python`和`fastdeploy-gpu-python`
|
||||||
|
- 如已安装CPU版本的`fastdeploy-python`后,在安装GPU版本的`fastdeploy-gpu-python`,请先执行`pip uninstall fastdeploy-python`卸载已有版本
|
||||||
|
|
||||||
|
## 环境依赖
|
||||||
|
|
||||||
|
- cuda >= 11.2
|
||||||
|
- cudnn >= 8.0
|
||||||
|
|
||||||
|
## 下载地址
|
||||||
|
|
||||||
|
### Linux x64平台
|
||||||
|
|
||||||
|
| CPU 安装包 | 硬件 | Python版本 |
|
||||||
|
| :------------- | :--- | :--------- |
|
||||||
|
| [fastdeploy_python-0.2.0-cp36-cp36m-manylinux1_x86_64.whl](https://bj.bcebos.com/paddlehub/fastdeploy/wheels/fastdeploy_python-0.2.0-cp36-cp36m-manylinux1_x86_64.whl) | CPU | 3.6 |
|
||||||
|
| [fastdeploy_python-0.2.0-cp37-cp37m-manylinux1_x86_64.whl](https://bj.bcebos.com/paddlehub/fastdeploy/wheels/fastdeploy_python-0.2.0-cp37-cp37m-manylinux1_x86_64.whl) | CPU | 3.7 |
|
||||||
|
| [fastdeploy_python-0.2.0-cp38-cp38-manylinux1_x86_64.whl](https://bj.bcebos.com/paddlehub/fastdeploy/wheels/fastdeploy_python-0.2.0-cp38-cp38-manylinux1_x86_64.whl) | CPU | 3.8 |
|
||||||
|
| [fastdeploy_python-0.2.0-cp39-cp39-manylinux1_x86_64.whl](https://bj.bcebos.com/paddlehub/fastdeploy/wheels/fastdeploy_python-0.2.0-cp39-cp39-manylinux1_x86_64.whl) | CPU | 3.9 |
|
||||||
|
|
||||||
|
| GPU 安装包 | 硬件 | Python版本 |
|
||||||
|
| :------------- | :--- | :--------- |
|
||||||
|
| [fastdeploy_gpu_python-0.2.0-cp36-cp36m-manylinux1_x86_64.whl](https://bj.bcebos.com/paddlehub/fastdeploy/wheels/fastdeploy_gpu_python-0.2.0-cp36-cp36m-manylinux1_x86_64.whl) | CPU/GPU | 3.6 |
|
||||||
|
| [fastdeploy_gpu_python-0.2.0-cp37-cp37m-manylinux1_x86_64.whl](https://bj.bcebos.com/paddlehub/fastdeploy/wheels/fastdeploy_gpu_python-0.2.0-cp37-cp37m-manylinux1_x86_64.whl) | CPU/GPU | 3.7 |
|
||||||
|
| [fastdeploy_gpu_python-0.2.0-cp38-cp38-manylinux1_x86_64.whl](https://bj.bcebos.com/paddlehub/fastdeploy/wheels/fastdeploy_gpu_python-0.2.0-cp38-cp38-manylinux1_x86_64.whl) | CPU/GPU | 3.8 |
|
||||||
|
| [fastdeploy_gpu_python-0.2.0-cp39-cp39-manylinux1_x86_64.whl](https://bj.bcebos.com/paddlehub/fastdeploy/wheels/fastdeploy_gpu_python-0.2.0-cp39-cp39-manylinux1_x86_64.whl) | CPU/GPU | 3.9 |
|
||||||
|
|
||||||
|
### Windows 10 x64平台
|
||||||
|
|
||||||
|
| CPU 安装包 | 硬件 | Python版本 |
|
||||||
|
| :---- | :-- | :------ |
|
||||||
|
| [fastdeploy_python-0.2.0-cp38-cp38-win_amd64.whl](https://bj.bcebos.com/paddlehub/fastdeploy/wheels/fastdeploy_python-0.2.0-cp38-cp38-win_amd64.whl) | CPU | 3.8 |
|
||||||
|
| [fastdeploy_python-0.2.0-cp39-cp39-win_amd64.whl](https://bj.bcebos.com/paddlehub/fastdeploy/wheels/fastdeploy_python-0.2.0-cp39-cp39-win_amd64.whl) | CPU | 3.9 |
|
||||||
|
|
||||||
|
| GPU 安装包 | 硬件 | Python版本 |
|
||||||
|
| :---- | :-- | :------ |
|
||||||
|
| [fastdeploy_gpu_python-0.2.0-cp38-cp38-win_amd64.whl](https://bj.bcebos.com/paddlehub/fastdeploy/wheels/fastdeploy_gpu_python-0.2.0-cp38-cp38-win_amd64.whl) | CPU/GPU | 3.8 |
|
||||||
|
| [fastdeploy_gpu_python-0.2.0-cp39-cp39-win_amd64.whl](https://bj.bcebos.com/paddlehub/fastdeploy/wheels/fastdeploy_gpu_python-0.2.0-cp39-cp39-win_amd64.whl) | CPU/GPU | 3.9 |
|
||||||
|
|
||||||
|
### Linux aarch64平台
|
||||||
|
|
||||||
|
| 安装包 | 硬件 | Python版本 |
|
||||||
|
| :---- | :-- | :------ |
|
||||||
|
| [fastdeploy_python-0.2.0-cp36-cp36m-manylinux_2_17_aarch64.whl](https://bj.bcebos.com/paddle2onnx/libs/wheels/fastdeploy_python-0.2.0-cp36-cp36m-manylinux_2_17_aarch64.whl) | CPU | 3.6 |
|
||||||
|
| [fastdeploy_python-0.2.0-cp37-cp37m-manylinux_2_17_aarch64.whl](https://bj.bcebos.com/paddle2onnx/libs/wheels/fastdeploy_python-0.2.0-cp37-cp37m-manylinux_2_17_aarch64.whl) | CPU | 3.7 |
|
||||||
|
| [fastdeploy_python-0.2.0-cp38-cp38-manylinux_2_17_aarch64.whl](https://bj.bcebos.com/paddle2onnx/libs/wheels/fastdeploy_python-0.2.0-cp38-cp38-manylinux_2_17_aarch64.whl) | CPU | 3.8 |
|
||||||
|
| [fastdeploy_python-0.2.0-cp39-cp39-manylinux_2_17_aarch64.whl](https://bj.bcebos.com/paddle2onnx/libs/wheels/fastdeploy_python-0.2.0-cp39-cp39-manylinux_2_17_aarch64.whl) | CPU | 3.9 |
|
||||||
|
|
||||||
|
### Mac OSX平台
|
||||||
|
|
||||||
|
| 架构 | 硬件 | 安装包 | Python版本 |
|
||||||
|
| :---- | :-- | :------ | :----- |
|
||||||
|
| x86_64 | CPU | [fastdeploy_python-0.2.0-cp36-cp36m-macosx_10_14_x86_64.whl](https://bj.bcebos.com/paddlehub/fastdeploy/wheels/fastdeploy_python-0.2.0-cp36-cp36m-macosx_10_14_x86_64.whl) | 3.6 |
|
||||||
|
| x86_64 | CPU | [fastdeploy_python-0.2.0-cp37-cp37m-macosx_10_14_x86_64.whl](https://bj.bcebos.com/paddlehub/fastdeploy/wheels/fastdeploy_python-0.2.0-cp37-cp37m-macosx_10_14_x86_64.whl) | 3.7 |
|
||||||
|
| x86_64 | CPU | [fastdeploy_python-0.2.0-cp38-cp38-macosx_10_14_x86_64.whl](https://bj.bcebos.com/paddlehub/fastdeploy/wheels/fastdeploy_python-0.2.0-cp38-cp38-macosx_10_14_x86_64.whl) | 3.8 |
|
||||||
|
| x86_64 | CPU | [fastdeploy_python-0.2.0-cp39-cp39-macosx_10_14_x86_64.whl](https://bj.bcebos.com/paddlehub/fastdeploy/wheels/fastdeploy_python-0.2.0-cp39-cp39-macosx_10_14_x86_64.whl) | 3.9 |
|
||||||
|
| arm64 | CPU | [fastdeploy_python-0.2.0-cp38-cp38-macosx_11_0_arm64.whl](https://bj.bcebos.com/paddlehub/fastdeploy/wheels/fastdeploy_python-0.2.0-cp38-cp38-macosx_11_0_arm64.whl) | 3.8 |
|
||||||
|
| arm64 | CPU | [fastdeploy_python-0.2.0-cp39-cp39-macosx_11_0_arm64.whl](https://bj.bcebos.com/paddlehub/fastdeploy/wheels/fastdeploy_python-0.2.0-cp39-cp39-macosx_11_0_arm64.whl) | 3.9 |
|
||||||
|
|
||||||
|
## 其它文档
|
||||||
|
|
||||||
|
- [预编译C++部署库](./prebuilt_libraries.md)
|
||||||
|
- [视觉模型C++/Python部署示例](../../examples/vision/)
|
Reference in New Issue
Block a user