Skip to content

Commit 820a5c5

Browse files
felixhjhjiangjiajunfelixhjh
authored
* Update README.md * Update README.md * Update README.md * Create README.md * Update README.md * Update README.md * Update README.md * Update README.md * Add evaluation calculate time and fix some bugs * Update classification __init__ * Move to ppseg * Add segmentation doc * Add PaddleClas infer.py * Update PaddleClas infer.py * Delete .infer.py.swp * Add PaddleClas infer.cc * Update README.md * Update README.md * Update README.md * Update infer.py * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Add PaddleSeg doc and infer.cc demo * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Create segmentation_result.md * Update README.md * Update segmentation_result.md * Update segmentation_result.md * Update segmentation_result.md * Update classification and detection evaluation function * Fix python grammar bug * Add PPSeg evaluation function * Add average_inference_time function * Update PaddleSeg example infer.py Tensorrt setting * Fix bug for CI convert os.system to subprocess.popen * Fix tensorrt cann't link to *.so * Fix tensorrt can't find so bug * Update CMakeLists * Update CMakeLists * Update CMakeLists * Update CMakeLists * Update README.md * Update README.md * Update README.md * Update setup.py Add --force-rpath Co-authored-by: Jason <[email protected]> Co-authored-by: felixhjh <[email protected]>
1 parent 912732f commit 820a5c5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

examples/vision/segmentation/paddleseg/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
- [PaddleSeg Release/2.6](https://github.com/PaddlePaddle/PaddleSeg/tree/release/2.6)
66

7-
目前FastDeploy支持如下模型的部署
7+
目前FastDeploy支持如下模型的部署
88

99
- [U-Net系列模型](https://github.com/PaddlePaddle/PaddleSeg/blob/release/2.6/configs/unet/README.md)
1010
- [PP-LiteSeg系列模型](https://github.com/PaddlePaddle/PaddleSeg/blob/release/2.6/configs/pp_liteseg/README.md)

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -415,7 +415,7 @@ def run(self):
415415
rpaths.append("$ORIGIN/" + os.path.join("libs/third_libs",
416416
path))
417417
rpaths = ":".join(rpaths)
418-
command = "patchelf --set-rpath '{}' ".format(rpaths) + pybind_so_file
418+
command = "patchelf --force-rpath --set-rpath '{}' ".format(rpaths) + pybind_so_file
419419
print(
420420
"=========================Set rpath for library===================")
421421
print(command)

0 commit comments

Comments
 (0)