feat: support Global Performance Tuning - #4476
Open
zewenli98 wants to merge 1 commit into
Open
Conversation
jianhu-nv
reviewed
Aug 12, 2026
| del trt_mod | ||
| torch.cuda.empty_cache() | ||
| _LOGGER.info(f"&&&& TASK_END [iter={iter_idx}] BuildRoute = '{route}'") | ||
| except Exception as exc: |
There was a problem hiding this comment.
Actually we cannot guarantee the TensorRT will not crash when setting a build route, for example, some driver level exception might be raised and it will not be caught by the try-catch block, and probably will crash the entire Python program. So I suggest we spawn a new process like the implementation in trtexec, so that even if the new child process crashes, the parent process remains unaffected and can continue to the next iteration.
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
TensorRT's Global Performance Tuner searches internal builder knobs for faster engines. Torch-TensorRT exposes the same capability in-process for Dynamo TRT subgraphs. Please see the description for details.
Fixes # (issue)
Type of change
Checklist: