[TRT] Fix trt shape values - #32415
Merged
Xavier Dupré (xadupre) merged 2 commits intoSep 3, 2026
Merged
Conversation
Pass the configured optimum and maximum shape tensor values to the matching TensorRT 10.11+ profile selectors. Add coverage using distinct minimum, optimum, and maximum values. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Keep the change focused on correcting the TensorRT 10.11+ selector arguments. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
|
Azure Pipelines: There may be pipelines that require an authorized user to comment /azp run to run. |
Contributor
There was a problem hiding this comment.
🟡 Changes recommended
Regression coverage with distinct MIN, OPT, and MAX shape-tensor values is missing.
Once you've addressed the issues Copilot identified, you can request another Copilot review.
Pull request overview
Corrects TensorRT 10.11+ shape-tensor profile selector mappings.
Changes:
- Passes maximum values to
kMAX. - Passes optimum values to
kOPTin both profile paths.
File summaries
| File | Description |
|---|---|
onnxruntime/core/providers/tensorrt/tensorrt_execution_provider.cc |
Corrects TensorRT shape-profile value assignments. |
Review details
- Files reviewed: 1/1 changed files
- Comments generated: 1
- Review effort level: Balanced
💡 Configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
Xavier Dupré (xadupre)
approved these changes
Sep 3, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Fix the TensorRT 10.11+ shape-tensor optimization profile setup by passing the configured optimum and maximum values to their matching kOPT and kMAX profile selectors.
Motivation and Context
Swapping OPT and MAX can make an valid profile invalid, causing TensorRT engine construction to fail when the configured optimum and maximum values differ.