KEMBAR78
[None][doc] add stable label to all the un-labelled arguments in LLM class by Superjomn · Pull Request #7863 · NVIDIA/TensorRT-LLM · GitHub
Skip to content

Conversation

@Superjomn
Copy link
Collaborator

@Superjomn Superjomn commented Sep 19, 2025

Summary by CodeRabbit

image
  • Documentation
    • API parameter docs now show explicit stability tags; fields without a prior status default to “stable.”
    • Tagging is applied only to the relevant parameter models, reducing noise and improving clarity.
    • Tag format standardized in parameter descriptions for consistent display across the docs.

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.

@Superjomn Superjomn requested a review from a team as a code owner September 19, 2025 06:31
@coderabbitai
Copy link
Contributor

coderabbitai bot commented Sep 19, 2025

Warning

Rate limit exceeded

@Superjomn has exceeded the limit for the number of commits or files that can be reviewed per hour. Please wait 3 minutes and 50 seconds before requesting another review.

⌛ How to resolve this issue?

After the wait time has elapsed, a review can be triggered using the @coderabbitai review command as a PR comment. Alternatively, push new commits to this PR.

We recommend that you space out your commits to avoid hitting the rate limit.

🚦 How do rate limits work?

CodeRabbit enforces hourly rate limits for each developer per organization.

Our paid plans have higher rate limits than the trial, open-source and free plans. In all cases, we re-allow further reviews after a brief timeout.

Please see our FAQ for further information.

📥 Commits

Reviewing files that changed from the base of the PR and between c58b6cd and f7d12d3.

📒 Files selected for processing (1)
  • tensorrt_llm/llmapi/utils.py (2 hunks)
📝 Walkthrough

Walkthrough

ApiParamTagger now only processes classes named LlmArgs or TorchLlmArgs. During model processing, fields without a json_schema_extra.status are assigned a "stable" tag. Descriptions are prefixed with :tag:<tag> via an amended method that accepts a tag parameter, and the model is rebuilt after tagging.

Changes

Cohort / File(s) Summary
API parameter tagging logic
tensorrt_llm/llmapi/utils.py
Restrict ApiParamTagger.call to classes named LlmArgs or TorchLlmArgs; update _process_pydantic_model to default missing json_schema_extra.status to "stable"; change _amend_pydantic_field_description_with_tags(self, cls, field_names, tag: str) to accept a tag and prefix descriptions with :tag:\``; rebuild model after applying tags; update callers to pass explicit tag values.

Sequence Diagram(s)

sequenceDiagram
  autonumber
  actor Caller
  participant Tagger as ApiParamTagger
  participant Model as Pydantic Model
  participant Fields as Model Fields

  Caller->>Tagger: __call__(cls)
  alt cls.__name__ == "LlmArgs" or "TorchLlmArgs"
    Tagger->>Model: _process_pydantic_model(cls)
    loop for each field
      Model-->>Tagger: field.json_schema_extra.status?
      alt status present
        Tagger->>Fields: _amend_pydantic_field_description_with_tags(field_names, tag=status)
      else missing status
        Note right of Tagger #aee0d4: Default tag = "stable"
        Tagger->>Fields: _amend_pydantic_field_description_with_tags(field_names, tag="stable")
      end
    end
    Tagger->>Model: rebuild model (apply updated descriptions)
    Model-->>Tagger: updated schema
  else other classes
    Tagger-->>Caller: skip processing
  end
Loading

Estimated code review effort

🎯 3 (Moderate) | ⏱️ ~20 minutes

Pre-merge checks and finishing touches

❌ Failed checks (1 warning)
Check name Status Explanation Resolution
Description Check ⚠️ Warning The PR body is essentially the repository template with placeholder headings and no substantive content: the Description, Test Coverage, and PR Checklist sections are empty and do not explain the change, rationale, or affected files. The PR metadata/title indicates "add stable label to all the un-labelled arguments in LLM class" but the author did not populate the required template fields, list tests, or identify reviewers. Because of these omissions the description is largely incomplete and insufficient for reviewers to assess or approve the change. Please complete the PR template before merging: provide a proper PR title using the required format, a concise Description that explains what code changed, why, and which files are affected (including any compatibility or migration notes). Add a Test Coverage section listing specific tests or commands to run (or links to new/updated tests), update the PR Checklist (CODEOWNERS/docs if applicable), and name reviewers. Finally include a brief CI results summary or re-run CI after updates and link any related issue/ticket so reviewers can validate the change.
✅ Passed checks (2 passed)
Check name Status Explanation
Title Check ✅ Passed The title concisely and accurately summarizes the primary change: adding a "stable" label to previously unlabeled LLM arguments. The raw summary shows the implementation in tensorrt_llm/llmapi/utils.py where fields missing a status are assigned "stable" and processing is scoped to LlmArgs/TorchLlmArgs, which matches the title. The phrasing is clear and focused for a reviewer scanning history.
Docstring Coverage ✅ Passed Docstring coverage is 100.00% which is sufficient. The required threshold is 80.00%.

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.

@Superjomn Superjomn enabled auto-merge (squash) September 19, 2025 06:32
@Superjomn
Copy link
Collaborator Author

/bot run --stage-list "A10-Build_Docs"

@tensorrt-cicd
Copy link
Collaborator

PR_Github #19299 [ run ] triggered by Bot

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 (2)
tensorrt_llm/llmapi/utils.py (2)

571-582: Avoid duplicated :tag: in docs; set missing status in json_schema_extra and rebuild once.

Prefixing descriptions while generate_api_docs_as_docstring() also injects tags yields duplicates like “:tag:stable :tag:stable …”. Prefer setting status on fields lacking it, then rebuild once.

Apply:

 def _process_pydantic_model(self, cls: Type[BaseModel]) -> None:
     """Process the Pydantic model to add tags to the fields.
     """
-    for field_name, field_info in cls.model_fields.items():
-        if field_info.json_schema_extra and 'status' in field_info.json_schema_extra:
-            status = field_info.json_schema_extra['status']
-            self._amend_pydantic_field_description_with_tags(
-                cls, [field_name], status)
-        else:
-            self._amend_pydantic_field_description_with_tags(
-                cls, [field_name], "stable")
+    updated = False
+    for _, field_info in cls.model_fields.items():
+        extra = field_info.json_schema_extra or {}
+        status = extra.get('status')
+        if not status:
+            extra['status'] = 'stable'
+            field_info.json_schema_extra = extra
+            updated = True
+    if updated:
+        cls.model_rebuild(force=True)

583-599: Py3.8 typing regression (‘list[str]’) and null/duplicate tag handling; avoid per-field rebuilds.

  • list[str] is invalid on Python 3.8; use List[str].
  • Guard against None descriptions and double-prefixing.
  • Defer model_rebuild to the caller (one rebuild per model).

Apply:

-def _amend_pydantic_field_description_with_tags(self, cls: Type[BaseModel],
-                                                field_names: list[str],
-                                                tag: str) -> None:
+def _amend_pydantic_field_description_with_tags(self, cls: Type[BaseModel],
+                                                field_names: List[str],
+                                                tag: str) -> None:
@@
-    assert field_names
-    for field_name in field_names:
-        field = cls.model_fields[field_name]
-        cls.model_fields[
-            field_name].description = f":tag:`{tag}` {field.description}"
-    cls.model_rebuild(force=True)
+    assert field_names
+    for field_name in field_names:
+        field = cls.model_fields[field_name]
+        desc = (field.description or "").strip()
+        # Avoid double-tagging if already present
+        if not desc.startswith(":tag:`"):
+            cls.model_fields[field_name].description = (
+                f":tag:`{tag}` {desc}".rstrip()
+            )
🧹 Nitpick comments (1)
tensorrt_llm/llmapi/utils.py (1)

567-569: Gating by class name is brittle — TorchLlmArgs is not being tagged.

tag_llm_params() only calls ApiParamTagger()(LlmArgs) (tensorrt_llm/llmapi/utils.py:601–603). ApiParamTagger currently gates on cls.name in ["LlmArgs","TorchLlmArgs"] (tensorrt_llm/llmapi/utils.py:567–569), while TorchLlmArgs is defined separately (tensorrt_llm/llmapi/llm_args.py:1980) and is not passed to the tagger. Either call ApiParamTagger()(TorchLlmArgs) from tag_llm_params or change the gating to a robust check (e.g., issubclass(cls, BaseLlmArgs) or detect pydantic BaseModel) instead of string-matching.

📜 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 1240724 and f03f19d.

📒 Files selected for processing (1)
  • tensorrt_llm/llmapi/utils.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:

  • tensorrt_llm/llmapi/utils.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:

  • tensorrt_llm/llmapi/utils.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:

  • tensorrt_llm/llmapi/utils.py
⏰ 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

@nv-guomingz nv-guomingz added the Release Blocker PRs that blocking the final release build or branching out the release branch label Sep 19, 2025
@tensorrt-cicd
Copy link
Collaborator

PR_Github #19299 [ run ] completed with state SUCCESS
/LLM/release-1.0/L0_MergeRequest_PR pipeline #424 (Partly Tested) completed with status: 'SUCCESS'

@Superjomn Superjomn force-pushed the doc.add-label-to-LlmArgs branch from f03f19d to c58b6cd Compare September 20, 2025 10:36
@Superjomn
Copy link
Collaborator Author

/bot run

@github-actions
Copy link

👎 Promotion blocked, new vulnerability found

Vulnerability report

Component Vulnerability Description Severity
pytorch CVE-2025-3730 A vulnerability, which was classified as problematic, was found in PyTorch 2.6.0. Affected is the function torch.nn.functional.ctc_loss of the file aten/src/ATen/native/LossCTC.cpp. The manipulation leads to denial of service. An attack has to be approached locally. The exploit has been disclosed to the public and may be used. The real existence of this vulnerability is still doubted at the moment. The name of the patch is 46fc5d8e360127361211cb237d5f9eef0223e567. It is recommended to apply a patch to fix this issue. The security policy of the project warns to use unknown models which might establish malicious effects. MEDIUM

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: 1

🧹 Nitpick comments (3)
tensorrt_llm/llmapi/utils.py (3)

1-1: Missing NVIDIA Apache-2.0 header (2025) at file top.

Per repo guidelines, prepend the standard NVIDIA Apache-2.0 header.


567-569: Scope guard only processes LlmArgs/TorchLlmArgs — confirm intent.

This aligns with the PR goal, but it’s a brittle name check. If aliases/subclasses are used, this will silently skip tagging. Consider an early return plus a more robust check when available, or document the limitation.


583-586: Use List[str] for Python 3.8 compatibility.

Built-in generics list[str] are 3.9+. Switch to typing.List[str] (or add from future import annotations).

from typing import List

def _amend_pydantic_field_description_with_tags(
    self, cls: Type[BaseModel], field_names: List[str], tag: str
) -> None:
    ...
📜 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 f03f19d and c58b6cd.

📒 Files selected for processing (1)
  • tensorrt_llm/llmapi/utils.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:

  • tensorrt_llm/llmapi/utils.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:

  • tensorrt_llm/llmapi/utils.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:

  • tensorrt_llm/llmapi/utils.py
⏰ 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

@Superjomn
Copy link
Collaborator Author

/bot run

@github-actions
Copy link

👎 Promotion blocked, new vulnerability found

Vulnerability report

Component Vulnerability Description Severity
pytorch CVE-2025-3730 A vulnerability, which was classified as problematic, was found in PyTorch 2.6.0. Affected is the function torch.nn.functional.ctc_loss of the file aten/src/ATen/native/LossCTC.cpp. The manipulation leads to denial of service. An attack has to be approached locally. The exploit has been disclosed to the public and may be used. The real existence of this vulnerability is still doubted at the moment. The name of the patch is 46fc5d8e360127361211cb237d5f9eef0223e567. It is recommended to apply a patch to fix this issue. The security policy of the project warns to use unknown models which might establish malicious effects. MEDIUM

Signed-off-by: Yan Chunwei <328693+Superjomn@users.noreply.github.com>
@Superjomn Superjomn force-pushed the doc.add-label-to-LlmArgs branch from c58b6cd to f7d12d3 Compare September 22, 2025 03:09
@Superjomn
Copy link
Collaborator Author

/bot run

@tensorrt-cicd
Copy link
Collaborator

PR_Github #19481 [ run ] triggered by Bot

@Superjomn
Copy link
Collaborator Author

/bot skip --comment "doc related generic change, and passed x86 single gpu test, no need to run multi-gpu"

@tensorrt-cicd
Copy link
Collaborator

PR_Github #19503 [ skip ] triggered by Bot

@tensorrt-cicd
Copy link
Collaborator

PR_Github #19481 [ run ] completed with state ABORTED
LLM/release-1.0/L0_MergeRequest_PR #433 (Blue Ocean) completed with status: ABORTED

@tensorrt-cicd
Copy link
Collaborator

PR_Github #19503 [ skip ] completed with state SUCCESS
Skipping testing for commit f7d12d3

@Superjomn Superjomn merged commit 8fecc06 into NVIDIA:release/1.0 Sep 22, 2025
4 checks passed
dominicshanshan pushed a commit to dominicshanshan/TensorRT-LLM that referenced this pull request Sep 23, 2025
…class (NVIDIA#7863)

Signed-off-by: Yan Chunwei <328693+Superjomn@users.noreply.github.com>
dominicshanshan pushed a commit to dominicshanshan/TensorRT-LLM that referenced this pull request Sep 23, 2025
…class (NVIDIA#7863)

Signed-off-by: Yan Chunwei <328693+Superjomn@users.noreply.github.com>
Signed-off-by: Wangshanshan <30051912+dominicshanshan@users.noreply.github.com>
dominicshanshan pushed a commit to dominicshanshan/TensorRT-LLM that referenced this pull request Sep 23, 2025
…class (NVIDIA#7863)

Signed-off-by: Yan Chunwei <328693+Superjomn@users.noreply.github.com>
Signed-off-by: Wangshanshan <30051912+dominicshanshan@users.noreply.github.com>
yuanjingx87 pushed a commit that referenced this pull request Sep 23, 2025
…class (#7863)

Signed-off-by: Yan Chunwei <328693+Superjomn@users.noreply.github.com>
dominicshanshan pushed a commit to dominicshanshan/TensorRT-LLM that referenced this pull request Sep 24, 2025
…class (NVIDIA#7863)

Signed-off-by: Yan Chunwei <328693+Superjomn@users.noreply.github.com>
Signed-off-by: Wangshanshan <30051912+dominicshanshan@users.noreply.github.com>
dominicshanshan pushed a commit to dominicshanshan/TensorRT-LLM that referenced this pull request Sep 24, 2025
…class (NVIDIA#7863)

Signed-off-by: Yan Chunwei <328693+Superjomn@users.noreply.github.com>
Signed-off-by: Wangshanshan <30051912+dominicshanshan@users.noreply.github.com>
dominicshanshan pushed a commit to dominicshanshan/TensorRT-LLM that referenced this pull request Sep 24, 2025
…class (NVIDIA#7863)

Signed-off-by: Yan Chunwei <328693+Superjomn@users.noreply.github.com>
Signed-off-by: Wangshanshan <30051912+dominicshanshan@users.noreply.github.com>
dominicshanshan pushed a commit to dominicshanshan/TensorRT-LLM that referenced this pull request Sep 24, 2025
…class (NVIDIA#7863)

Signed-off-by: Yan Chunwei <328693+Superjomn@users.noreply.github.com>
Signed-off-by: Wangshanshan <30051912+dominicshanshan@users.noreply.github.com>
dominicshanshan pushed a commit to dominicshanshan/TensorRT-LLM that referenced this pull request Sep 24, 2025
…class (NVIDIA#7863)

Signed-off-by: Yan Chunwei <328693+Superjomn@users.noreply.github.com>
Signed-off-by: Wangshanshan <30051912+dominicshanshan@users.noreply.github.com>
dominicshanshan pushed a commit to dominicshanshan/TensorRT-LLM that referenced this pull request Sep 24, 2025
…class (NVIDIA#7863)

Signed-off-by: Yan Chunwei <328693+Superjomn@users.noreply.github.com>
Signed-off-by: Wangshanshan <30051912+dominicshanshan@users.noreply.github.com>
dominicshanshan pushed a commit to dominicshanshan/TensorRT-LLM that referenced this pull request Sep 24, 2025
…class (NVIDIA#7863)

Signed-off-by: Yan Chunwei <328693+Superjomn@users.noreply.github.com>
Signed-off-by: Wangshanshan <30051912+dominicshanshan@users.noreply.github.com>
dominicshanshan pushed a commit to dominicshanshan/TensorRT-LLM that referenced this pull request Sep 25, 2025
…class (NVIDIA#7863)

Signed-off-by: Yan Chunwei <328693+Superjomn@users.noreply.github.com>
Signed-off-by: Wangshanshan <30051912+dominicshanshan@users.noreply.github.com>
chzblych pushed a commit that referenced this pull request Sep 25, 2025
…class (#7863)

Signed-off-by: Yan Chunwei <328693+Superjomn@users.noreply.github.com>
Signed-off-by: Wangshanshan <30051912+dominicshanshan@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Release Blocker PRs that blocking the final release build or branching out the release branch

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants