Skip to content

[TRTLLM-13052][feat] Enable TRTLLM moe backend for nemotron-h BF16 ckpt - #14944

Merged
Wanli-Jiang merged 1 commit into
NVIDIA:mainfrom
Wanli-Jiang:user/williamj/nemotron-bf16-trtllm-moe-backend
Jun 10, 2026
Merged

[TRTLLM-13052][feat] Enable TRTLLM moe backend for nemotron-h BF16 ckpt#14944
Wanli-Jiang merged 1 commit into
NVIDIA:mainfrom
Wanli-Jiang:user/williamj/nemotron-bf16-trtllm-moe-backend

Conversation

@Wanli-Jiang

@Wanli-Jiang Wanli-Jiang commented Jun 4, 2026

Copy link
Copy Markdown
Collaborator

Summary by CodeRabbit

  • New Features

    • MOE backend now supports multiple activation types (Relu2, SwiGLU) in BF16 unquantized FlashInfer path.
  • Improvements

    • Simplified MOE class fallback logic for unquantized configurations.
    • Enhanced routing and backend configuration validation.
  • Tests

    • Added comprehensive accuracy tests for BF16 TRTLLM MOE backend across multiple configurations and hardware platforms.

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)

  • If PR introduces API changes, an appropriate PR label is added - either api-compatible or api-breaking. For api-breaking, include BREAKING in the PR title.

  • Any new dependencies have been scanned for license and vulnerabilities

  • CODEOWNERS updated if ownership changes

  • Documentation updated as needed

  • Update tava architecture diagram if there is a significant design change in PR.

  • 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

To see a list of available CI bot commands, please comment /bot help.

@nv-guomingz
nv-guomingz requested a review from rosenrodt June 4, 2026 06:59
@Wanli-Jiang Wanli-Jiang changed the title [TRTLLM-13052][feat] Enable TRTLLM moe backend for nemotron-h [TRTLLM-13052][feat] Enable TRTLLM moe backend for nemotron-h BF16 ckpt Jun 4, 2026
@Wanli-Jiang
Wanli-Jiang force-pushed the user/williamj/nemotron-bf16-trtllm-moe-backend branch 2 times, most recently from ec5f7b6 to cb15612 Compare June 5, 2026 05:15
@Wanli-Jiang
Wanli-Jiang marked this pull request as ready for review June 5, 2026 05:16
@Wanli-Jiang
Wanli-Jiang requested review from a team as code owners June 5, 2026 05:16
@Wanli-Jiang
Wanli-Jiang requested a review from yuxianq June 5, 2026 05:16
@Wanli-Jiang

Copy link
Copy Markdown
Collaborator Author

/bot run --disable-fail-fast

@Wanli-Jiang
Wanli-Jiang requested a review from nv-guomingz June 5, 2026 05:18
@tensorrt-cicd

Copy link
Copy Markdown
Collaborator

PR_Github #52257 [ run ] triggered by Bot. Commit: cb15612 Link to invocation

@coderabbitai

coderabbitai Bot commented Jun 5, 2026

Copy link
Copy Markdown
Contributor

Review Change Stack

📝 Walkthrough

Walkthrough

This PR extends the TRTLLM-Gen BF16 MoE backend to support multiple activation types beyond Swiglu, introduces a new activation set constant, simplifies MoE class fallback logic, converts activations to FlashInfer format, and adds comprehensive unit and integration tests covering new routing methods and activation combinations.

Changes

TRTLLM BF16 MoE multi-activation support

Layer / File(s) Summary
BF16 activation configuration and routing logic
tensorrt_llm/_torch/modules/fused_moe/fused_moe_trtllm_gen.py, tensorrt_llm/_torch/modules/fused_moe/create_moe.py
New _BF16_SUPPORTED_ACTIVATIONS set replaces hardcoded Swiglu assumption; _requires_separated_routing method refactors routing logic with special handling for DeepSeekV3; config validation updated to assert activation membership in the supported set; fallback from TRTLLMGenFusedMoE to CutlassFusedMoE now applies uniformly when quantization is absent, independent of routing method.
Backend kernel activation conversion
tensorrt_llm/_torch/modules/fused_moe/moe_op_backend.py
Removes ActType_TrtllmGen import and Swiglu-only validation; converts gated_act_type to FlashInfer-compatible enum; passes computed activation_type argument to both trtllm_bf16_moe and trtllm_bf16_routed_moe kernel invocations for both routed and non-routed execution paths.
Unit test for BF16 routing and activation combinations
tests/unittest/_torch/modules/moe/test_moe_backend.py
Imports DeepSeekV3MoeRoutingMethod; adds parametrized test_trtllm_bf16_unquantized_moe covering two routing kinds (DeepSeekV3 and Renormalize), two activations (Relu2 and SwiGLU), multiple sequence lengths, and both fused and separated routing modes; validates backend accuracy against reference output.
Integration and test list coverage
tests/integration/defs/accuracy/test_llm_api_pytorch.py, tests/integration/test_lists/qa/llm_function_core.txt, tests/integration/test_lists/test-db/l0_b200.yml, tests/integration/test_lists/test-db/l0_b300.yml, tests/integration/test_lists/test-db/l0_gb200_multi_gpus.yml
New test_bf16_trtllm_gen_moe_backend method in TestNemotronV3Super tests Nemotron-3 Super BF16-A12B with TRTLLM backend, CUDA graph padding, and MMLU/GSM8K evaluations; test method registered with attention_dp parameter variants across B200, B300, and GB200 hardware configurations and QA test lists.

Estimated code review effort

🎯 3 (Moderate) | ⏱️ ~25 minutes

Suggested reviewers

  • symphonylyh
  • mikeiovine
  • danielafrimi
🚥 Pre-merge checks | ✅ 3 | ❌ 2

❌ Failed checks (2 warnings)

Check name Status Explanation Resolution
Description check ⚠️ Warning The PR description contains only the template structure with no substantive content; critical sections like 'Description' and 'Test Coverage' are completely empty. Fill in the 'Description' section explaining the issue and solution, and the 'Test Coverage' section listing the relevant tests that validate the changes.
Docstring Coverage ⚠️ Warning Docstring coverage is 50.00% which is insufficient. The required threshold is 80.00%. Write docstrings for the functions missing them to satisfy the coverage threshold.
✅ Passed checks (3 passed)
Check name Status Explanation
Title check ✅ Passed The title clearly describes the main feature: enabling TRTLLM MoE backend for Nemotron-H BF16 checkpoints, with proper JIRA ticket and [feat] type prefix.
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests

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

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown
Contributor

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)
tests/unittest/_torch/modules/moe/test_moe_backend.py (3)

788-877: 💤 Low value

Consider expanding the test docstring to document coverage.

The current docstring is minimal. Expanding it to mention the parametrization dimensions (routing methods, activations, sequence lengths, routing modes) would improve discoverability and make the test's purpose clearer for future maintainers.

📝 Suggested docstring
 def test_trtllm_bf16_unquantized_moe(
     routing_kind, activation_type, seq_len, trtllm_use_router_logits
 ):
-    """TRTLLM-Gen BF16 (unquantized) MoE accuracy vs the reference impl."""
+    """TRTLLM-Gen BF16 (unquantized) MoE accuracy vs the reference impl.
+    
+    This test covers:
+    - Routing methods: DeepSeekV3, Renormalize
+    - Activations: Relu2, SwiGLU
+    - Sequence lengths: 8, 256
+    - Routing modes: fused (router_logits) and separated (pre-computed indices)
+    
+    Validates backend output accuracy against the reference module after autotuning.
+    """
     backend_type = MoeBackendType.TRTLLM
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@tests/unittest/_torch/modules/moe/test_moe_backend.py` around lines 788 -
877, Update the docstring of test_trtllm_bf16_unquantized_moe to document what
the test covers: mention the parametrization dimensions (routing_kind,
activation_type, seq_len, trtllm_use_router_logits), the backend being tested
(MoeBackendType.TRTLLM with bfloat16), the unquantized code path
(BaseQuantizeUtil / unquantized weights), that it runs autotune and compares
output accuracy against the reference fused MoE implementation, and any
GPU/mapping setup assumptions; reference the test function name
test_trtllm_bf16_unquantized_moe and key helpers like routing_method.apply,
backend.quantize_input, run_backend_moe, and ref_fused_moe.check_accuracy so
maintainers can quickly see what's exercised.

766-777: ⚡ Quick win

Add a docstring to the helper function.

The factory function branches between two routing methods with different configuration requirements. A docstring would improve maintainability by documenting the purpose, parameters, and return type.

📝 Suggested docstring
 def _make_bf16_routing_method(routing_kind: str, top_k: int, num_experts: int, device: str):
+    """Create a routing method for BF16 unquantized MoE testing.
+
+    Args:
+        routing_kind: Either "renormalize" or "deepseekv3"
+        top_k: Number of experts to activate per token
+        num_experts: Total number of experts
+        device: Device string for tensor placement
+
+    Returns:
+        RenormalizeMoeRoutingMethod or DeepSeekV3MoeRoutingMethod instance
+    """
     if routing_kind == "renormalize":
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@tests/unittest/_torch/modules/moe/test_moe_backend.py` around lines 766 -
777, Add a clear docstring to the helper function _make_bf16_routing_method
describing its purpose (factory that returns a BF16-capable routing method), the
parameters (routing_kind: str, top_k: int, num_experts: int, device: str), the
return type (RenormalizeMoeRoutingMethod or DeepSeekV3MoeRoutingMethod), and the
branching behavior (when routing_kind == "renormalize" it returns
RenormalizeMoeRoutingMethod; otherwise it constructs DeepSeekV3MoeRoutingMethod
with a per-expert float32 bias created on the given device and the specific
kwargs used: top_k, n_group=1, topk_group=1, routed_scaling_factor=2.5,
callable_e_score_correction_bias).

780-787: 💤 Low value

Consider adding ids to all parametrize decorators for consistency.

Lines 781 and 785 provide explicit test IDs, but lines 783 and 787 don't. Adding ids to all decorators improves test output readability and makes pytest collection output more uniform.

📝 Suggested improvement
 `@pytest.mark.parametrize`(
     "trtllm_use_router_logits", [True, False], ids=["fused_routing", "separated_routing"]
 )
-@pytest.mark.parametrize("seq_len", [8, 256])
+@pytest.mark.parametrize("seq_len", [8, 256], ids=["short", "long"])
 `@pytest.mark.parametrize`(
     "activation_type", [ActivationType.Relu2, ActivationType.Swiglu], ids=["relu2", "swiglu"]
 )
-@pytest.mark.parametrize("routing_kind", ["deepseekv3", "renormalize"])
+@pytest.mark.parametrize("routing_kind", ["deepseekv3", "renormalize"], ids=["deepseekv3", "renormalize"])
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@tests/unittest/_torch/modules/moe/test_moe_backend.py` around lines 780 -
787, Add explicit ids to the remaining pytest.mark.parametrize decorators in the
test file to match the others: update the "seq_len" parametrize (currently
pytest.mark.parametrize("seq_len", [8, 256])) to include ids (e.g.,
ids=["short", "long"] or ["8", "256"]) and update the "routing_kind" parametrize
(currently pytest.mark.parametrize("routing_kind", ["deepseekv3",
"renormalize"])) to include ids (e.g., ids=["deepseekv3", "renormalize"]); keep
the existing decorators for "trtllm_use_router_logits" and "activation_type"
unchanged.
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Inline comments:
In `@tests/integration/defs/accuracy/test_llm_api_pytorch.py`:
- Around line 6823-6840: The test test_bf16_trtllm_gen_moe_backend forces
MoeConfig(backend="TRTLLM") but lacks the SM120/SM121 skip other TRTLLM MoE
tests have; add a guard at the top of test_bf16_trtllm_gen_moe_backend that
skips the test when the current GPU SM is 120 or 121 (use the same skip helper
used elsewhere in this file, e.g., skip_if_sm_in or the project’s SM-check
helper), so the test returns/skips before creating the LLM with
MoeConfig(backend="TRTLLM") on unsupported SM120/SM121 targets.

---

Nitpick comments:
In `@tests/unittest/_torch/modules/moe/test_moe_backend.py`:
- Around line 788-877: Update the docstring of test_trtllm_bf16_unquantized_moe
to document what the test covers: mention the parametrization dimensions
(routing_kind, activation_type, seq_len, trtllm_use_router_logits), the backend
being tested (MoeBackendType.TRTLLM with bfloat16), the unquantized code path
(BaseQuantizeUtil / unquantized weights), that it runs autotune and compares
output accuracy against the reference fused MoE implementation, and any
GPU/mapping setup assumptions; reference the test function name
test_trtllm_bf16_unquantized_moe and key helpers like routing_method.apply,
backend.quantize_input, run_backend_moe, and ref_fused_moe.check_accuracy so
maintainers can quickly see what's exercised.
- Around line 766-777: Add a clear docstring to the helper function
_make_bf16_routing_method describing its purpose (factory that returns a
BF16-capable routing method), the parameters (routing_kind: str, top_k: int,
num_experts: int, device: str), the return type (RenormalizeMoeRoutingMethod or
DeepSeekV3MoeRoutingMethod), and the branching behavior (when routing_kind ==
"renormalize" it returns RenormalizeMoeRoutingMethod; otherwise it constructs
DeepSeekV3MoeRoutingMethod with a per-expert float32 bias created on the given
device and the specific kwargs used: top_k, n_group=1, topk_group=1,
routed_scaling_factor=2.5, callable_e_score_correction_bias).
- Around line 780-787: Add explicit ids to the remaining pytest.mark.parametrize
decorators in the test file to match the others: update the "seq_len"
parametrize (currently pytest.mark.parametrize("seq_len", [8, 256])) to include
ids (e.g., ids=["short", "long"] or ["8", "256"]) and update the "routing_kind"
parametrize (currently pytest.mark.parametrize("routing_kind", ["deepseekv3",
"renormalize"])) to include ids (e.g., ids=["deepseekv3", "renormalize"]); keep
the existing decorators for "trtllm_use_router_logits" and "activation_type"
unchanged.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Enterprise

Run ID: 4cb1dbde-0900-4d7d-b507-b1f23ab1689f

📥 Commits

Reviewing files that changed from the base of the PR and between 45d4d54 and cb15612.

📒 Files selected for processing (9)
  • tensorrt_llm/_torch/modules/fused_moe/create_moe.py
  • tensorrt_llm/_torch/modules/fused_moe/fused_moe_trtllm_gen.py
  • tensorrt_llm/_torch/modules/fused_moe/moe_op_backend.py
  • tests/integration/defs/accuracy/test_llm_api_pytorch.py
  • tests/integration/test_lists/qa/llm_function_core.txt
  • tests/integration/test_lists/test-db/l0_b200.yml
  • tests/integration/test_lists/test-db/l0_b300.yml
  • tests/integration/test_lists/test-db/l0_gb200_multi_gpus.yml
  • tests/unittest/_torch/modules/moe/test_moe_backend.py

Comment thread tests/integration/defs/accuracy/test_llm_api_pytorch.py

@rosenrodt rosenrodt left a comment

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

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

LGTM. Thanks.

Comment thread tests/unittest/_torch/modules/moe/test_moe_backend.py
@Wanli-Jiang
Wanli-Jiang force-pushed the user/williamj/nemotron-bf16-trtllm-moe-backend branch 2 times, most recently from b97c4c0 to 1315f2e Compare June 5, 2026 09:40
@Wanli-Jiang

Copy link
Copy Markdown
Collaborator Author

/bot run --disable-fail-fast

@tensorrt-cicd

Copy link
Copy Markdown
Collaborator

PR_Github #52323 [ run ] triggered by Bot. Commit: 1315f2e Link to invocation

@tensorrt-cicd

Copy link
Copy Markdown
Collaborator

PR_Github #52257 [ run ] completed with state ABORTED. Commit: cb15612

Link to invocation

@tensorrt-cicd

Copy link
Copy Markdown
Collaborator

PR_Github #52323 [ run ] completed with state SUCCESS. Commit: 1315f2e
/LLM/main/L0_MergeRequest_PR pipeline #41629 completed with status: 'FAILURE'

CI Report

⚠️ Action Required:

  • Please check the failed tests and fix your PR
  • If you cannot view the failures, ask the CI triggerer to share details
  • Once fixed, request an NVIDIA team member to trigger CI again

CI Agent Failure Analysis

Link to invocation

@Wanli-Jiang

Copy link
Copy Markdown
Collaborator Author

/bot run --disable-fail-fast

@tensorrt-cicd

Copy link
Copy Markdown
Collaborator

PR_Github #52514 [ run ] triggered by Bot. Commit: 1315f2e Link to invocation

@tensorrt-cicd

Copy link
Copy Markdown
Collaborator

PR_Github #52514 [ run ] completed with state FAILURE. Commit: 1315f2e
/LLM/main/L0_MergeRequest_PR pipeline #41804 completed with status: 'FAILURE'

CI Report

⚠️ Action Required:

  • Please check the failed tests and fix your PR
  • If you cannot view the failures, ask the CI triggerer to share details
  • Once fixed, request an NVIDIA team member to trigger CI again

CI Agent Failure Analysis

Link to invocation

@Wanli-Jiang

Copy link
Copy Markdown
Collaborator Author

/bot run --disable-fail-fast

@tensorrt-cicd

Copy link
Copy Markdown
Collaborator

PR_Github #52634 [ run ] triggered by Bot. Commit: 1315f2e Link to invocation

@tensorrt-cicd

Copy link
Copy Markdown
Collaborator

PR_Github #52634 [ run ] completed with state SUCCESS. Commit: 1315f2e
/LLM/main/L0_MergeRequest_PR pipeline #41913 completed with status: 'FAILURE'

CI Report

⚠️ Action Required:

  • Please check the failed tests and fix your PR
  • If you cannot view the failures, ask the CI triggerer to share details
  • Once fixed, request an NVIDIA team member to trigger CI again

CI Agent Failure Analysis

Link to invocation

Signed-off-by: Wanli Jiang <35160485+Wanli-Jiang@users.noreply.github.com>
@Wanli-Jiang
Wanli-Jiang force-pushed the user/williamj/nemotron-bf16-trtllm-moe-backend branch from 1315f2e to e146a3c Compare June 9, 2026 02:23
@Wanli-Jiang

Copy link
Copy Markdown
Collaborator Author

/bot help

@github-actions

github-actions Bot commented Jun 9, 2026

Copy link
Copy Markdown

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.

Details

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) --high-priority]

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. Supports wildcard * for pattern matching (e.g., "*PerfSanity*" matches all stages containing PerfSanity). Examples: "A10-PyTorch-1, xxx", "PerfSanity". 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. Supports wildcard * for pattern matching. Examples: --extra-stage "H100_PCIe-TensorRT-Post-Merge-1, xxx", --extra-stage "Post-Merge".

--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.

--high-priority (OPTIONAL) : Run the pipeline with high priority. This option is restricted to authorized users only and will route the job to a high-priority queue.

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.

@Wanli-Jiang

Copy link
Copy Markdown
Collaborator Author

/bot run --only-multi-gpu-test --disable-fail-fast

@tensorrt-cicd

Copy link
Copy Markdown
Collaborator

PR_Github #52923 [ run ] triggered by Bot. Commit: e146a3c Link to invocation

@tensorrt-cicd

Copy link
Copy Markdown
Collaborator

PR_Github #52923 [ run ] completed with state SUCCESS. Commit: e146a3c
/LLM/main/L0_MergeRequest_PR pipeline #42166 (Partly Tested) completed with status: 'SUCCESS'

CI Report

Link to invocation

@Wanli-Jiang

Copy link
Copy Markdown
Collaborator Author

/bot run --disable-fail-fast

@tensorrt-cicd

Copy link
Copy Markdown
Collaborator

PR_Github #52990 [ run ] triggered by Bot. Commit: e146a3c Link to invocation

@tensorrt-cicd

Copy link
Copy Markdown
Collaborator

PR_Github #52990 [ run ] completed with state SUCCESS. Commit: e146a3c
/LLM/main/L0_MergeRequest_PR pipeline #42220 completed with status: 'FAILURE'

CI Report

⚠️ Action Required:

  • Please check the failed tests and fix your PR
  • If you cannot view the failures, ask the CI triggerer to share details
  • Once fixed, request an NVIDIA team member to trigger CI again

CI Agent Failure Analysis

Link to invocation

@Wanli-Jiang

Copy link
Copy Markdown
Collaborator Author

/bot skip --comment "Test passed at 52634 for single GPUs and 52923 for multi GPUs"

@tensorrt-cicd

Copy link
Copy Markdown
Collaborator

PR_Github #53189 [ skip ] triggered by Bot. Commit: e146a3c Link to invocation

@tensorrt-cicd

Copy link
Copy Markdown
Collaborator

PR_Github #53189 [ skip ] completed with state SUCCESS. Commit: e146a3c
Skipping testing for commit e146a3c

Link to invocation

@Wanli-Jiang
Wanli-Jiang merged commit 3b945f7 into NVIDIA:main Jun 10, 2026
7 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

6 participants