-
Notifications
You must be signed in to change notification settings - Fork 3k
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
Update package pipelines to support TRT 8.5 #13998
Conversation
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.
Does it mean that the code is not compatible with TRT 8.4?
yes, I'm afraid so. UINT8 type is just supported by TRT 8.5. |
Then should the old docker files be deleted?
Whenever you need them, you still can find them from git history. |
The perf dashboard/CI is still using those docker files. Later might discuss whether to stop running the perf tests on older TRT and then will remove those files. |
@@ -2,7 +2,7 @@ | |||
# Label: com.nvidia.cuda.version: 11.6.1 | |||
# Label: com.nvidia.cudnn.version: 8.4.0 | |||
# Ubuntu 20.04 | |||
FROM nvidia/cuda:11.6.1-cudnn8-devel-ubuntu20.04 | |||
FROM nvidia/cuda:11.8.0-cudnn8-devel-ubuntu20.04 AS base |
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.
nitpick: The AS base
is not needed since this dockerfile does not have another FROM
statement that builds upon this subimage.
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.
removed.
Update following package pipelines to support TRT 8.5 after microsoft#13867: - [Linux Multi GPU TensorRT CI Pipeline](https://aiinfra.visualstudio.com/Lotus/_build?definitionId=1016&_a=summary) - [Python packaging pipeline](https://aiinfra.visualstudio.com/Lotus/_build?definitionId=841&_a=summary) - [build-perf-test-binaries](https://aiinfra.visualstudio.com/Lotus/_build?definitionId=1130&_a=summary) - [Linux-GPU-EP-Perf](https://aiinfra.visualstudio.com/Lotus/_build?definitionId=841&_a=summary)
Update following package pipelines to support TRT 8.5 after #13867: