mirror of
https://github.com/PaddlePaddle/FastDeploy.git
synced 2025-10-06 09:07:10 +08:00

* [Server] Support GPU encrypt & auth for FD Triton Server * fix dockerfile proxy env error * update build scrpits * remove some logs --------- Co-authored-by: root <root@yq02-sys-rpm1206692e6.yq02.baidu.com> Co-authored-by: qiuyanjun <qiuyanjun@baidu.com>
8 lines
268 B
Bash
Executable File
8 lines
268 B
Bash
Executable File
# This script offer a demo to build triton fastdeploy backend only.
|
|
|
|
cd serving
|
|
rm -rf build && mkdir build
|
|
|
|
cd build
|
|
cmake .. -DFASTDEPLOY_DIR=${FD_GPU_SDK} -DTRITON_COMMON_REPO_TAG=r21.10 -DTRITON_CORE_REPO_TAG=r21.10 -DTRITON_BACKEND_REPO_TAG=r21.10;
|
|
make -j`nproc` |