From 7d9c47753f901c4c551487660c5866f0a8b6b033 Mon Sep 17 00:00:00 2001 From: jiangjiajun Date: Sun, 16 Oct 2022 06:24:47 +0000 Subject: [PATCH] Fix dead link in notice --- fastdeploy/backends/tensorrt/trt_backend.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fastdeploy/backends/tensorrt/trt_backend.cc b/fastdeploy/backends/tensorrt/trt_backend.cc index a2c880364..395215db0 100644 --- a/fastdeploy/backends/tensorrt/trt_backend.cc +++ b/fastdeploy/backends/tensorrt/trt_backend.cc @@ -298,7 +298,7 @@ bool TrtBackend::Infer(std::vector& inputs, << "TensorRT engine will be rebuilt once shape range information " "changed, this may take lots of time, you can set a proper shape " "range before loading model to avoid rebuilding process. refer " - "https://github.com/PaddlePaddle/FastDeploy/docs/en/faq/" + "https://github.com/PaddlePaddle/FastDeploy/blob/develop/docs/en/faq/" "tensorrt_tricks.md for more details." << std::endl; BuildTrtEngine(); @@ -592,7 +592,7 @@ bool TrtBackend::CreateTrtEngineFromOnnx(const std::string& onnx_model_buffer) { "should be noticed that FastDeploy will rebuild the engine while " "new input shape is out of the collected shape range, this may " "bring some time consuming problem, refer " - "https://github.com/PaddlePaddle/FastDeploy/docs/en/faq/" + "https://github.com/PaddlePaddle/FastDeploy/blob/develop/docs/en/faq/" "tensorrt_tricks.md for more details." << std::endl; initialized_ = true;