-
Notifications
You must be signed in to change notification settings - Fork 2.9k
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
[TensorRT EP] Refactor TRT version update logic & apply TRT 10.5 #22483
Conversation
read variables by py-win-gpu
Looks good to me, please help resolve the conflicts. |
@yf711 just realized we forgot to update oss parser branch to https://github.com/onnx/onnx-tensorrt/tree/10.5-GA-ORT-DDS |
will send out PR later today |
PR to update oss parser branch: #22644 |
…rosoft#22483) ### Description <!-- Describe your changes. --> * Leverage template `common-variables.yml` and reduce usage of hardcoded trt_version https://github.com/microsoft/onnxruntime/blob/8391b24447fcca4c01599b3270255fbf76ac8a21/tools/ci_build/github/azure-pipelines/templates/common-variables.yml#L2-L7 * Among all CI yamls, this PR reduces usage of hardcoding trt_version from 40 to 6, by importing trt_version from `common-variables.yml` * Apply TRT 10.5 and re-enable control flow op test ### Motivation and Context <!-- - Why is this change required? What problem does it solve? - If it fixes an open issue, please link to the issue here. --> - Reduce usage of hardcoding trt_version among all CI ymls ### Next refactor PR will work on reducing usage of hardcoding trt_version among `.dockerfile`, `.bat` and remaining 2 yml files (download_win_gpu_library.yml & set-winenv.yml, which are step-template yaml that can't import variables)
Description
common-variables.yml
and reduce usage of hardcoded trt_versiononnxruntime/tools/ci_build/github/azure-pipelines/templates/common-variables.yml
Lines 2 to 7 in 8391b24
common-variables.yml
Motivation and Context
Next refactor PR
will work on reducing usage of hardcoding trt_version among
.dockerfile
,.bat
and remaining 2 yml files(download_win_gpu_library.yml & set-winenv.yml, which are step-template yaml that can't import variables)