Skip to content

How to use a fixed TensorRT version in triton server? #5400

Closed Answered by krishung5
niuzheng168 asked this question in Q&A
Discussion options

You must be logged in to vote

Hi @niuzheng168, if you'd like to use some specific TRT version, you can try to use LD_LIBRARY_PATH to link with the TRT library with the version you want. For example, after downloading the TRT tar file, do something like

tar -xf TensorRT-8.5.2.2.Linux.x86_64-gnu.cuda-11.8.cudnn8.6.tar.gz
cd TensorRT-8.5.2.2/lib
export LD_LIBRARY_PATH=$PWD:$LD_LIBRARY_PATH
// run Triton again, should be loading the 8.5.2 libs now

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by dyastremsky
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
question Further information is requested
2 participants
Converted from issue

This discussion was converted from issue #5373 on February 23, 2023 00:35.