Skip to content

Conversation

@lucaslie
Copy link
Member

@lucaslie lucaslie commented Oct 24, 2025

Summary by CodeRabbit

  • Bug Fixes

    • Improved consistency of shape handling in CUDA graph operations to ensure reliable graph caching and execution.
  • Tests

    • Enhanced test coverage to verify that forward operations correctly utilize captured graphs during execution.

Description

Test Coverage

PR Checklist

Please review the following before submitting your PR:

  • PR description clearly explains what and why. If using CodeRabbit's summary, please make sure it makes sense.

  • PR Follows TRT-LLM CODING GUIDELINES to the best of your knowledge.

  • Test cases are provided for new code paths (see test instructions)

  • Any new dependencies have been scanned for license and vulnerabilities

  • CODEOWNERS updated if ownership changes

  • Documentation updated as needed

  • The reviewers assigned automatically/manually are appropriate for the PR.

  • Please check this after reviewing the above items as appropriate for this PR.

GitHub Bot Help

/bot [-h] ['run', 'kill', 'skip', 'reuse-pipeline'] ...

Provide a user friendly way for developers to interact with a Jenkins server.

Run /bot [-h|--help] to print this help message.

See details below for each supported subcommand.

run [--reuse-test (optional)pipeline-id --disable-fail-fast --skip-test --stage-list "A10-PyTorch-1, xxx" --gpu-type "A30, H100_PCIe" --test-backend "pytorch, cpp" --add-multi-gpu-test --only-multi-gpu-test --disable-multi-gpu-test --post-merge --extra-stage "H100_PCIe-TensorRT-Post-Merge-1, xxx" --detailed-log --debug(experimental)]

Launch build/test pipelines. All previously running jobs will be killed.

--reuse-test (optional)pipeline-id (OPTIONAL) : Allow the new pipeline to reuse build artifacts and skip successful test stages from a specified pipeline or the last pipeline if no pipeline-id is indicated. If the Git commit ID has changed, this option will be always ignored. The DEFAULT behavior of the bot is to reuse build artifacts and successful test results from the last pipeline.

--disable-reuse-test (OPTIONAL) : Explicitly prevent the pipeline from reusing build artifacts and skipping successful test stages from a previous pipeline. Ensure that all builds and tests are run regardless of previous successes.

--disable-fail-fast (OPTIONAL) : Disable fail fast on build/tests/infra failures.

--skip-test (OPTIONAL) : Skip all test stages, but still run build stages, package stages and sanity check stages. Note: Does NOT update GitHub check status.

--stage-list "A10-PyTorch-1, xxx" (OPTIONAL) : Only run the specified test stages. Examples: "A10-PyTorch-1, xxx". Note: Does NOT update GitHub check status.

--gpu-type "A30, H100_PCIe" (OPTIONAL) : Only run the test stages on the specified GPU types. Examples: "A30, H100_PCIe". Note: Does NOT update GitHub check status.

--test-backend "pytorch, cpp" (OPTIONAL) : Skip test stages which don't match the specified backends. Only support [pytorch, cpp, tensorrt, triton]. Examples: "pytorch, cpp" (does not run test stages with tensorrt or triton backend). Note: Does NOT update GitHub pipeline status.

--only-multi-gpu-test (OPTIONAL) : Only run the multi-GPU tests. Note: Does NOT update GitHub check status.

--disable-multi-gpu-test (OPTIONAL) : Disable the multi-GPU tests. Note: Does NOT update GitHub check status.

--add-multi-gpu-test (OPTIONAL) : Force run the multi-GPU tests in addition to running L0 pre-merge pipeline.

--post-merge (OPTIONAL) : Run the L0 post-merge pipeline instead of the ordinary L0 pre-merge pipeline.

--extra-stage "H100_PCIe-TensorRT-Post-Merge-1, xxx" (OPTIONAL) : Run the ordinary L0 pre-merge pipeline and specified test stages. Examples: --extra-stage "H100_PCIe-TensorRT-Post-Merge-1, xxx".

--detailed-log (OPTIONAL) : Enable flushing out all logs to the Jenkins console. This will significantly increase the log volume and may slow down the job.

--debug (OPTIONAL) : Experimental feature. Enable access to the CI container for debugging purpose. Note: Specify exactly one stage in the stage-list parameter to access the appropriate container environment. Note: Does NOT update GitHub check status.

For guidance on mapping tests to stage names, see docs/source/reference/ci-overview.md
and the scripts/test_to_stage_mapping.py helper.

kill

kill

Kill all running builds associated with pull request.

skip

skip --comment COMMENT

Skip testing for latest commit on pull request. --comment "Reason for skipping build/test" is required. IMPORTANT NOTE: This is dangerous since lack of user care and validation can cause top of tree to break.

reuse-pipeline

reuse-pipeline

Reuse a previous pipeline to validate current commit. This action will also kill all currently running builds associated with the pull request. IMPORTANT NOTE: This is dangerous since lack of user care and validation can cause top of tree to break.

@lucaslie lucaslie requested a review from Superjomn October 24, 2025 16:59
@lucaslie lucaslie self-assigned this Oct 24, 2025
@lucaslie lucaslie requested a review from a team as a code owner October 24, 2025 16:59
@lucaslie lucaslie moved this from Backlog to In review in AutoDeploy Board Oct 24, 2025
@lucaslie
Copy link
Member Author

/bot run

@lucaslie lucaslie enabled auto-merge (squash) October 24, 2025 17:02
@coderabbitai
Copy link
Contributor

coderabbitai bot commented Oct 24, 2025

📝 Walkthrough

Walkthrough

This PR normalizes shape type handling in CUDA graph computations by converting input shapes to tuples for hashability consistency, and adds a test verification mechanism that temporarily replaces the forward method to ensure graph capture usage.

Changes

Cohort / File(s) Summary
CUDA graph shape type normalization
tensorrt_llm/_torch/auto_deploy/compile/backends/torch_cudagraph.py
Casts input.shape to tuple in combined shape computation for both graph capture and forward shape calculation to ensure consistent, hashable tuple types used as dictionary keys.
Test verification for CUDA graph usage
tests/unittest/_torch/auto_deploy/unit/singlegpu/compile/test_cuda_graph_batch_sizes.py
Adds static helper method _raise_error_for_forward() that raises RuntimeError. In test_forward_uses_cuda_graph_for_valid_batch_sizes, temporarily replaces the captured graph's forward method with this helper to verify that forward calls use the captured graph rather than the original method.

Estimated code review effort

🎯 2 (Simple) | ⏱️ ~8 minutes

Pre-merge checks and finishing touches

❌ Failed checks (1 warning)
Check name Status Explanation Resolution
Description Check ⚠️ Warning The PR description is largely incomplete and fails to meet the repository's description template requirements. The Description section contains only a template comment placeholder without explaining the issue or solution. The Test Coverage section similarly contains only a template comment with no actual test information provided. The PR Checklist is marked complete with [x], but no substantive verification details or explanations are documented. Consequently, the description lacks essential information about what was changed, why it was changed, and how it was tested, leaving reviewers without the necessary context to evaluate the PR. Fill in the Description section with a clear explanation of the bug being fixed and why converting shapes to tuples solves the problem. Provide specific details about which test cases validate the fix in the Test Coverage section, such as "test_forward_uses_cuda_graph_for_valid_batch_sizes" from the modified test file. Complete the PR Checklist items with actual verification notes explaining what CODING GUIDELINES items were reviewed, confirm test coverage is adequate, and verify all other checklist items.
✅ Passed checks (2 passed)
Check name Status Explanation
Title Check ✅ Passed The PR title "[https://nvbugs/5606166][fix] AutoDeploy: use tuples for cudagraph shape lookup" is directly related to the main change in the pull request. The raw summary indicates the core modification is converting input.shape to tuple in combined_shape computation to ensure consistent, hashable tuple types for cudagraph keys. The title concisely and specifically communicates this primary change while following the required format with a valid NVBugs ticket reference and fix type designation. The title is clear enough for a teammate to understand the essential purpose of the changeset from history.
Docstring Coverage ✅ Passed Docstring coverage is 80.00% which is sufficient. The required threshold is 80.00%.
✨ Finishing touches
  • 📝 Generate docstrings
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Post copyable unit tests in a comment

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

Caution

Some comments are outside the diff and can’t be posted inline due to platform limitations.

⚠️ Outside diff range comments (1)
tensorrt_llm/_torch/auto_deploy/compile/backends/torch_cudagraph.py (1)

1-1: Add missing NVIDIA Apache-2.0 copyright header.

Per coding guidelines, all Python source files must include the NVIDIA Apache-2.0 copyright header at the top of the file with the current year (2025).

As per coding guidelines

Add the copyright header before the docstring:

+# SPDX-FileCopyrightText: Copyright (c) 2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
+# SPDX-License-Identifier: Apache-2.0
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
 """Compile backend with cudagraph."""
🧹 Nitpick comments (1)
tensorrt_llm/_torch/auto_deploy/compile/backends/torch_cudagraph.py (1)

160-166: LGTM! Consistent tuple conversion for shape lookup.

The tuple() conversion ensures the combined_shape key used for CUDA graph lookup at line 166 matches the key format created during capture (line 142).

Optional: Consider iterable unpacking for a more Pythonic approach:

         rounded_shapes = [
-            (self.round_to_cuda_batch_size(input.shape[0]),) + tuple(input.shape[1:])
+            (self.round_to_cuda_batch_size(input.shape[0]), *input.shape[1:])
             for input in args_batched
         ]
📜 Review details

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 2d86d6b and 48cc04a.

📒 Files selected for processing (2)
  • tensorrt_llm/_torch/auto_deploy/compile/backends/torch_cudagraph.py (2 hunks)
  • tests/unittest/_torch/auto_deploy/unit/singlegpu/compile/test_cuda_graph_batch_sizes.py (2 hunks)
🧰 Additional context used
📓 Path-based instructions (3)
**/*.{h,hpp,hh,hxx,cpp,cxx,cc,cu,cuh,py}

📄 CodeRabbit inference engine (CODING_GUIDELINES.md)

Use only spaces, no tabs; indent with 4 spaces.

Files:

  • tests/unittest/_torch/auto_deploy/unit/singlegpu/compile/test_cuda_graph_batch_sizes.py
  • tensorrt_llm/_torch/auto_deploy/compile/backends/torch_cudagraph.py
**/*.py

📄 CodeRabbit inference engine (CODING_GUIDELINES.md)

**/*.py: Python code must target Python 3.8+.
Indent Python code with 4 spaces; do not use tabs.
Maintain module namespace when importing; prefer 'from package.subpackage import foo' then 'foo.SomeClass()' instead of importing the class directly.
Python filenames should be snake_case (e.g., some_file.py).
Python classes use PascalCase names.
Functions and methods use snake_case names.
Local variables use snake_case; prefix 'k' for variables that start with a number (e.g., k_99th_percentile).
Global variables use upper SNAKE_CASE prefixed with 'G' (e.g., G_MY_GLOBAL).
Constants use upper SNAKE_CASE (e.g., MY_CONSTANT).
Avoid shadowing variables from an outer scope.
Initialize all externally visible members of a class in the constructor.
Prefer docstrings for interfaces that may be used outside a file; comments for in-function or file-local interfaces.
Use Google-style docstrings for classes and functions (Sphinx-parsable).
Document attributes and variables inline so they render under the class/function docstring.
Avoid reflection when a simpler, explicit approach suffices (e.g., avoid dict(**locals()) patterns).
In try/except, catch the most specific exceptions possible.
For duck-typing try/except, keep the try body minimal and use else for the main logic.

Files:

  • tests/unittest/_torch/auto_deploy/unit/singlegpu/compile/test_cuda_graph_batch_sizes.py
  • tensorrt_llm/_torch/auto_deploy/compile/backends/torch_cudagraph.py
**/*.{cpp,cxx,cc,h,hpp,hh,hxx,cu,cuh,py}

📄 CodeRabbit inference engine (CODING_GUIDELINES.md)

Prepend the NVIDIA Apache-2.0 copyright header with current year to the top of all source files (e.g., .cpp, .h, .cu, .py).

Files:

  • tests/unittest/_torch/auto_deploy/unit/singlegpu/compile/test_cuda_graph_batch_sizes.py
  • tensorrt_llm/_torch/auto_deploy/compile/backends/torch_cudagraph.py
🧬 Code graph analysis (1)
tests/unittest/_torch/auto_deploy/unit/singlegpu/compile/test_cuda_graph_batch_sizes.py (2)
tensorrt_llm/_torch/auto_deploy/compile/backends/torch_cudagraph.py (1)
  • forward (145-179)
tests/unittest/_torch/auto_deploy/unit/singlegpu/compile/test_captured_graph.py (1)
  • forward (21-27)
🪛 Ruff (0.14.1)
tests/unittest/_torch/auto_deploy/unit/singlegpu/compile/test_cuda_graph_batch_sizes.py

39-39: Unused static method argument: args

(ARG004)


39-39: Unused static method argument: kwargs

(ARG004)


40-40: Avoid specifying long messages outside the exception class

(TRY003)

tensorrt_llm/_torch/auto_deploy/compile/backends/torch_cudagraph.py

160-160: Consider iterable unpacking instead of concatenation

Replace with iterable unpacking

(RUF005)

⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (1)
  • GitHub Check: Pre-commit Check
🔇 Additional comments (3)
tensorrt_llm/_torch/auto_deploy/compile/backends/torch_cudagraph.py (1)

142-143: LGTM! Ensures consistent tuple keys for CUDA graph lookup.

Converting input.shape to tuple() ensures the dictionary key is consistently a tuple rather than a torch.Size object, which resolves the shape lookup issue mentioned in the PR.

tests/unittest/_torch/auto_deploy/unit/singlegpu/compile/test_cuda_graph_batch_sizes.py (2)

38-40: LGTM! Clever test helper to verify CUDA graph usage.

This helper function is used in the test to temporarily replace model.forward, ensuring that if the model's forward method is called (instead of the CUDA graph path), the test will fail. This validates that the CUDA graph is actually being used for valid batch sizes.

Note: The static analysis hints about unused arguments are false positives—the signature must match the method being replaced. The message style hint is a minor style preference and can be safely ignored in test code.


199-205: LGTM! Proper verification of CUDA graph execution path.

The test correctly verifies that captured_graph.forward() uses the CUDA graph replay path rather than falling back to model.forward(). The try/finally pattern ensures the original forward method is restored even if the test fails.

@tensorrt-cicd
Copy link
Collaborator

PR_Github #22458 [ run ] triggered by Bot. Commit: 48cc04a

Copy link
Collaborator

@govind-ramnarayan govind-ramnarayan left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks! Lgtm

@tensorrt-cicd
Copy link
Collaborator

PR_Github #22458 [ run ] completed with state SUCCESS. Commit: 48cc04a
/LLM/main/L0_MergeRequest_PR pipeline #16925 completed with status: 'FAILURE'

Copy link
Collaborator

@Superjomn Superjomn left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@lucaslie
Copy link
Member Author

/bot run

@tensorrt-cicd
Copy link
Collaborator

PR_Github #22674 [ run ] triggered by Bot. Commit: 48cc04a

@lucaslie lucaslie force-pushed the ll/shape_tuple_for_cudagraph branch from 48cc04a to b2844a8 Compare October 28, 2025 00:09
@lucaslie
Copy link
Member Author

/bot run

@tensorrt-cicd
Copy link
Collaborator

PR_Github #22674 [ run ] completed with state FAILURE. Commit: 48cc04a
/LLM/main/L0_MergeRequest_PR pipeline #17094 completed with status: 'FAILURE'

@tensorrt-cicd
Copy link
Collaborator

PR_Github #22690 [ run ] triggered by Bot. Commit: b2844a8

@tensorrt-cicd
Copy link
Collaborator

PR_Github #22690 [ run ] completed with state SUCCESS. Commit: b2844a8
/LLM/main/L0_MergeRequest_PR pipeline #17108 completed with status: 'FAILURE'

@lucaslie
Copy link
Member Author

/bot run

@tensorrt-cicd
Copy link
Collaborator

PR_Github #22788 [ run ] triggered by Bot. Commit: b2844a8

@tensorrt-cicd
Copy link
Collaborator

PR_Github #22788 [ run ] completed with state SUCCESS. Commit: b2844a8
/LLM/main/L0_MergeRequest_PR pipeline #17185 completed with status: 'SUCCESS'

@lucaslie lucaslie merged commit 0ee71d9 into NVIDIA:main Oct 28, 2025
5 checks passed
@github-project-automation github-project-automation bot moved this from In review to Done in AutoDeploy Board Oct 28, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

Status: Done

Development

Successfully merging this pull request may close these issues.

4 participants