-
Notifications
You must be signed in to change notification settings - Fork 364
version: TRT upgrade to 9.2 on Linux Testing #2538
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
c9ff362
to
3b48d80
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add TRT to LD library path after bazel install .tar.gz
.
third_party/tensorrt/local/BUILD
Outdated
@@ -87,7 +85,7 @@ cc_import( | |||
name = "nvinfer_static_lib", | |||
static_library = select({ | |||
":aarch64_linux": "lib/aarch64-linux-gnu/libnvinfer_static.a", | |||
":ci_rhel_x86_64_linux": "lib64/libnvinfer_static.a", | |||
":ci_rhel_x86_64_linux": "targets/x86_64-linux-gnu/lib/libnvinfer_static.a", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
RHEL 7 build. Pull container locally + install TRT + CUDNN.
pyproject.toml
Outdated
@@ -8,7 +8,7 @@ requires = [ | |||
"cffi>=1.15.1", | |||
"typing-extensions>=4.7.0", | |||
"future>=0.18.3", | |||
"tensorrt>=8.6,<8.7", | |||
"tensorrt>=8.6", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Specify <10.0
27bc6e0
to
215373f
Compare
|
packaging/pre_build_script.sh
Outdated
mkdir -p /usr/lib/aarch64-linux-gnu | ||
cp /usr/tensorrt/targets/aarch64-linux-gnu/lib/* /usr/lib/aarch64-linux-gnu/ || : | ||
mkdir -p /usr/include/aarch64-linux-gnu | ||
cp /usr/tensorrt/targets/aarch64-linux-gnu/include/* /usr/include/aarch64-linux-gnu/ || : |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remove these for CI
Description
Fixes #2532
Type of change
Checklist: