Skip to content

Conversation

@chzblych
Copy link
Collaborator

@chzblych chzblych commented Nov 24, 2025

Summary by CodeRabbit

  • Chores
    • Updated internal testing infrastructure with improved SLURM resource cleanup and release throttling mechanisms.
    • Reorganized and expanded test configurations for x86 and GB200 GPU setups with updated host mappings.
    • Consolidated multi-node test configurations to use explicit static definitions for enhanced clarity and maintainability.

✏️ Tip: You can customize this high-level summary in your review settings.

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

  • 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

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

@chzblych chzblych requested review from a team as code owners November 24, 2025 07:22
@chzblych chzblych requested review from ruodil and xinhe-nv November 24, 2025 07:22
@chzblych
Copy link
Collaborator Author

/bot run --stage-list "GB200-8_GPUs-2_Nodes-PyTorch-1, GB200-8_GPUs-2_Nodes-PyTorch-2, GB200-8_GPUs-2_Nodes-PyTorch-Post-Merge-1, GB200-8_GPUs-2_Nodes-PyTorch-Post-Merge-2, GB200-8_GPUs-2_Nodes-PyTorch-Post-Merge-3, GB200-4_GPUs-PyTorch-1, GB200-4_GPUs-PyTorch-Post-Merge-1, DGX_H100-2_GPUs-PyTorch-Others-1, DGX_H100-4_GPUs-PyTorch-DeepSeek-1" --disable-fail-fast

@coderabbitai
Copy link
Contributor

coderabbitai bot commented Nov 24, 2025

📝 Walkthrough

Walkthrough

The file makes targeted adjustments to Jenkins test orchestration: relaxing file-existence checks in cleanup routines, throttling Slurm release calls, removing duplicate environment exports, and restructuring x86/GB200 test configurations to use OCI-based hostnames and explicit mappings rather than programmatic generation.

Changes

Cohort / File(s) Summary
Cleanup and resource management
jenkins/L0_Test.groovy
In cleanUpSlurmResources, relaxes file-existence check by removing test -f guard and relying on || true for tolerance. In runLLMTestlistWithAgent, throttles Slurm release calls to every 3 iterations (counter % 3 == 0). In runLLMTestlistWithSbatch, removes duplicated NVIDIA_IMEX_CHANNELS=0 export line.
x86 and SBSA test configuration restructuring
jenkins/L0_Test.groovy
In launchTestJobs, removes DGX H100 entries from vanilla x86 config and adds corresponding OCI-based entries to x86 Slurm configs. Introduces new GB200 entries in SBSASlurmTestConfigs (GB200-4_GPUs variants with gb200-oci hosts) and replaces programmatic GB200-8_GPUs multi-entry generation with explicit configurations. In SBSATestConfigs, introduces GB200-4_GPUs OCI entries and removes legacy gb200-trtllm/gb200-x4 references.
Multi-node configuration migration
jenkins/L0_Test.groovy
In multiNodesSBSAConfigs, transitions from programmatic generation to explicit, statically defined GB200-8_GPUs-2_Nodes-PyTorch entries with OCI-based host naming and specified node counts.

Estimated code review effort

🎯 3 (Moderate) | ⏱️ ~25 minutes

  • The test configuration restructuring requires verification of OCI hostname mappings, GPU counts, and node allocations across multiple config sections to ensure consistency
  • Logic changes in cleanup and throttling routines are straightforward but should be validated for expected Slurm behavior
  • Multiple interdependent configuration sections (vanilla, Slurm, SBSA configs) need cross-validation to ensure no conflicting or orphaned entries remain

Pre-merge checks and finishing touches

❌ Failed checks (1 warning)
Check name Status Explanation Resolution
Description check ⚠️ Warning The PR description only contains the template and bot help text without filling in the required sections (Description, Test Coverage, Checklist items). Fill in the Description section explaining why test stages are being moved to OCI machines, and provide Test Coverage details listing the affected test configurations.
✅ Passed checks (2 passed)
Check name Status Explanation
Title check ✅ Passed The title clearly and specifically describes the main change: moving test stages to use OCI machines, which aligns with the core objective of the changeset.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
✨ Finishing touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Post copyable unit tests in a comment

Tip

📝 Customizable high-level summaries are now available in beta!

You can now customize how CodeRabbit generates the high-level summary in your pull requests — including its content, structure, tone, and formatting.

  • Provide your own instructions using the high_level_summary_instructions setting.
  • Format the summary however you like (bullet lists, tables, multi-section layouts, contributor stats, etc.).
  • Use high_level_summary_in_walkthrough to move the summary from the description to the walkthrough section.

Example instruction:

"Divide the high-level summary into five sections:

  1. 📝 Description — Summarize the main change in 50–60 words, explaining what was done.
  2. 📓 References — List relevant issues, discussions, documentation, or related PRs.
  3. 📦 Dependencies & Requirements — Mention any new/updated dependencies, environment variable changes, or configuration updates.
  4. 📊 Contributor Summary — Include a Markdown table showing contributions:
    | Contributor | Lines Added | Lines Removed | Files Changed |
  5. ✔️ Additional Notes — Add any extra reviewer context.
    Keep each section concise (under 200 words) and use bullet or numbered lists for clarity."

Note: This feature is currently in beta for Pro-tier users, and pricing will be announced later.


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

🧹 Nitpick comments (2)
jenkins/L0_Test.groovy (2)

416-425: Relaxed slurm_job_id fetch is fine; optionally hide missing-file noise

Using cat ${jobWorkspace}/slurm_job_id.txt || true keeps behavior non-fatal when the file is absent and simplifies the check. It may, however, emit No such file or directory on stderr in the Jenkins logs when the file is missing. If you want quieter logs, consider:

script: Utils.sshUserCmd(
    remote,
    "\"cat ${jobWorkspace}/slurm_job_id.txt 2>/dev/null || true\""
)

This preserves current semantics while suppressing spurious errors.


602-613: Throttling scontrol release looks good; consider skipping when job ID is empty

Releasing only every 3 iterations (counter % 3 == 0) will substantially reduce scontrol release traffic while still running often enough (every 30 minutes) within the 15‑hour window.

To avoid pointless calls when submission fails and slurmJobID is null/empty, you could guard the release:

if (slurmJobID && counter % 3 == 0) {
    Utils.exec(pipeline,
        script: Utils.sshUserCmd(remote, "\"scontrol release ${slurmJobID} || true\""),
        numRetries: 3)
}

Not required, but it trims no-op SSH calls and log noise.

📜 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 6e5384d and 138c740.

📒 Files selected for processing (1)
  • jenkins/L0_Test.groovy (4 hunks)
🧰 Additional context used
🧠 Learnings (2)
📚 Learning: 2025-08-26T09:49:04.956Z
Learnt from: pengbowang-nv
Repo: NVIDIA/TensorRT-LLM PR: 7192
File: tests/integration/test_lists/test-db/l0_dgx_b200.yml:56-72
Timestamp: 2025-08-26T09:49:04.956Z
Learning: In TensorRT-LLM test configuration files, the test scheduling system handles wildcard matching with special rules that prevent duplicate test execution even when the same tests appear in multiple yaml files with overlapping GPU wildcards (e.g., "*b200*" and "*gb200*").

Applied to files:

  • jenkins/L0_Test.groovy
📚 Learning: 2025-09-09T09:40:45.658Z
Learnt from: fredricz-20070104
Repo: NVIDIA/TensorRT-LLM PR: 7645
File: tests/integration/test_lists/qa/llm_function_core.txt:648-648
Timestamp: 2025-09-09T09:40:45.658Z
Learning: In TensorRT-LLM test lists, it's common and intentional for the same test to appear in multiple test list files when they serve different purposes (e.g., llm_function_core.txt for comprehensive core functionality testing and llm_function_core_sanity.txt for quick sanity checks). This duplication allows tests to be run in different testing contexts.

Applied to files:

  • jenkins/L0_Test.groovy
⏰ 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)
jenkins/L0_Test.groovy (3)

2741-2747: New DGX H100 OCI Slurm configs look consistent; verify SlurmConfig wiring

The added entries:

"DGX_H100-2_GPUs-PyTorch-Others-1": ["dgx-h100-x2-oci", "l0_dgx_h100", 1, 1, 2],
"DGX_H100-2_GPUs-PyTorch-Ray-1":    ["dgx-h100-x2-oci", "l0_dgx_h100", 1, 1, 2],
"DGX_H100-4_GPUs-PyTorch-DeepSeek-1": ["dgx-h100-x4-oci", "l0_dgx_h100", 1, 1, 4],

match the naming conventions (GPU count in the stage name, backend -PyTorch-, DeepSeek/Ray/Others tags) and the value layout used elsewhere ([platform, yaml, splitId, splits, gpuCount, …]). They will correctly route through runLLMTestlistOnSlurm with 2 or 4 GPUs on a single node.

Please double-check:

  • SlurmConfig.partitionConfig / clusterConfig define dgx-h100-x2-oci and dgx-h100-x4-oci.
  • tests/integration/test_lists/test-db/l0_dgx_h100.yml covers the desired subsets for these new stage names.

2781-2786: GB200 x4 SBSA Slurm configs are aligned; confirm YAML & partition definitions

The new SBSA Slurm entries:

"GB200-4_GPUs-PyTorch-1":              ["gb200-x4-oci", "l0_gb200_multi_gpus", 1, 1, 4],
"GB200-4_GPUs-PyTorch-Post-Merge-1":   ["gb200-x4-oci", "l0_gb200_multi_gpus", 1, 1, 4],
// "GB300-4_GPUs-PyTorch-Post-Merge-1": ["gb300-x4", "l0_gb300_multi_gpus", 1, 1, 4],

fit the existing pattern (stage name encodes GPU count and post-merge status; value array matches [platform, yaml, splitId, splits, gpuCount]). For AArch64, these will be picked up in the SBSA Slurm branch and treated as multi‑GPU jobs via the "4_GPUs" marker.

Given prior behavior with overlapping GB200 lists and wildcards, it’s expected that l0_gb200_multi_gpus may overlap with other GB200 YAMLs, and the scheduler should still dedupe execution. Based on learnings, this duplication is acceptable at the test-db layer.

Please verify:

  • gb200-x4-oci is configured in SlurmConfig.partitionConfig.
  • l0_gb200_multi_gpus.yml exists in the test-db and contains the intended GB200 SBSA cases.

2789-2797: Explicit GB200 8‑GPU 2‑node SBSA configs look correct; ensure Slurm + test-db plumbing

The new multi-node SBSA mapping:

multiNodesSBSAConfigs = [
    "GB200-8_GPUs-2_Nodes-PyTorch-1":            ["gb200-oci-trtllm", "l0_gb200_multi_nodes", 1, 2, 8, 2],
    "GB200-8_GPUs-2_Nodes-PyTorch-2":            ["gb200-oci-trtllm", "l0_gb200_multi_nodes", 2, 2, 8, 2],
    "GB200-8_GPUs-2_Nodes-PyTorch-Post-Merge-1": ["gb200-oci-trtllm", "l0_gb200_multi_nodes", 1, 3, 8, 2],
    "GB200-8_GPUs-2_Nodes-PyTorch-Post-Merge-2": ["gb200-oci-trtllm", "l0_gb200_multi_nodes", 2, 3, 8, 2],
    "GB200-8_GPUs-2_Nodes-PyTorch-Post-Merge-3": ["gb200-oci-trtllm", "l0_gb200_multi_nodes", 3, 3, 8, 2],
]

is consistent with:

  • parseMultiNodeTaskConfigFromStageName, which expects <GPU>-<N>_GPUs-<M>_Nodes-… and will extract gpu=GB200 and system_gpu_count=8.
  • getNodeArgs(nodeCount, gpuCount), yielding 8 GPUs across 2 nodes (4 per node) as expected.

These will be correctly picked up in the SBSA multi-node Slurm branch (AArch64) as multi-GPU, multi-node jobs.

Please validate:

  • gb200-oci-trtllm exists in SlurmConfig.partitionConfig and points at the intended OCI GB200 cluster.
  • l0_gb200_multi_nodes.yml exists and contains the test-db definitions aligned with the new multi-node scenarios.

@tensorrt-cicd
Copy link
Collaborator

PR_Github #25513 [ run ] triggered by Bot. Commit: 138c740

@chzblych
Copy link
Collaborator Author

/bot run --stage-list "GB200-8_GPUs-2_Nodes-PyTorch-1, GB200-8_GPUs-2_Nodes-PyTorch-2, GB200-8_GPUs-2_Nodes-PyTorch-Post-Merge-1, GB200-8_GPUs-2_Nodes-PyTorch-Post-Merge-2, GB200-8_GPUs-2_Nodes-PyTorch-Post-Merge-3, GB200-4_GPUs-PyTorch-1, GB200-4_GPUs-PyTorch-Post-Merge-1, DGX_H100-2_GPUs-PyTorch-Others-1, DGX_H100-4_GPUs-PyTorch-DeepSeek-1" --disable-fail-fast

@tensorrt-cicd
Copy link
Collaborator

PR_Github #25548 [ run ] triggered by Bot. Commit: d6cafa7

@tensorrt-cicd
Copy link
Collaborator

PR_Github #25513 [ run ] completed with state ABORTED. Commit: 138c740
LLM/main/L0_MergeRequest_PR #19319 (Blue Ocean) completed with status: ABORTED

@tensorrt-cicd
Copy link
Collaborator

PR_Github #25548 [ run ] completed with state SUCCESS. Commit: d6cafa7
/LLM/main/L0_MergeRequest_PR pipeline #19347 (Partly Tested) completed with status: 'FAILURE'

@mlefeb01
Copy link
Collaborator

/bot run --stage-list "GB200-8_GPUs-2_Nodes-PyTorch-1, GB200-8_GPUs-2_Nodes-PyTorch-2, GB200-8_GPUs-2_Nodes-PyTorch-Post-Merge-1, GB200-8_GPUs-2_Nodes-PyTorch-Post-Merge-2, GB200-8_GPUs-2_Nodes-PyTorch-Post-Merge-3, GB200-4_GPUs-PyTorch-1, GB200-4_GPUs-PyTorch-Post-Merge-1, DGX_H100-2_GPUs-PyTorch-Others-1, DGX_H100-4_GPUs-PyTorch-DeepSeek-1" --disable-fail-fast

@tensorrt-cicd
Copy link
Collaborator

PR_Github #25572 [ run ] triggered by Bot. Commit: 26529ef

@chzblych
Copy link
Collaborator Author

/bot run --stage-list "GB200-8_GPUs-2_Nodes-PyTorch-1, GB200-8_GPUs-2_Nodes-PyTorch-2, GB200-8_GPUs-2_Nodes-PyTorch-Post-Merge-1, GB200-8_GPUs-2_Nodes-PyTorch-Post-Merge-2, GB200-8_GPUs-2_Nodes-PyTorch-Post-Merge-3, GB200-4_GPUs-PyTorch-1, GB200-4_GPUs-PyTorch-Post-Merge-1, DGX_H100-2_GPUs-PyTorch-Others-1, DGX_H100-4_GPUs-PyTorch-DeepSeek-1" --disable-fail-fast

@tensorrt-cicd
Copy link
Collaborator

PR_Github #25577 [ run ] triggered by Bot. Commit: 8fbc169

@tensorrt-cicd
Copy link
Collaborator

PR_Github #25572 [ run ] completed with state ABORTED. Commit: 26529ef
LLM/main/L0_MergeRequest_PR #19369 (Blue Ocean) completed with status: ABORTED

@chzblych
Copy link
Collaborator Author

/bot run --stage-list "GB200-8_GPUs-2_Nodes-PyTorch-1, GB200-8_GPUs-2_Nodes-PyTorch-2, GB200-8_GPUs-2_Nodes-PyTorch-Post-Merge-1, GB200-8_GPUs-2_Nodes-PyTorch-Post-Merge-2, GB200-8_GPUs-2_Nodes-PyTorch-Post-Merge-3, GB200-4_GPUs-PyTorch-1, GB200-4_GPUs-PyTorch-Post-Merge-1, DGX_H100-2_GPUs-PyTorch-Others-1, DGX_H100-4_GPUs-PyTorch-DeepSeek-1" --disable-fail-fast

@tensorrt-cicd
Copy link
Collaborator

PR_Github #25594 [ run ] triggered by Bot. Commit: fcf84a8

@tensorrt-cicd
Copy link
Collaborator

PR_Github #25577 [ run ] completed with state ABORTED. Commit: 8fbc169
LLM/main/L0_MergeRequest_PR #19374 (Blue Ocean) completed with status: ABORTED

@chzblych
Copy link
Collaborator Author

/bot run --stage-list "GB200-8_GPUs-2_Nodes-PyTorch-1, GB200-8_GPUs-2_Nodes-PyTorch-2, GB200-8_GPUs-2_Nodes-PyTorch-Post-Merge-1, GB200-8_GPUs-2_Nodes-PyTorch-Post-Merge-2, GB200-8_GPUs-2_Nodes-PyTorch-Post-Merge-3, GB200-4_GPUs-PyTorch-1, GB200-4_GPUs-PyTorch-Post-Merge-1, DGX_H100-2_GPUs-PyTorch-Others-1, DGX_H100-4_GPUs-PyTorch-DeepSeek-1" --disable-fail-fast

@tensorrt-cicd
Copy link
Collaborator

PR_Github #25595 [ run ] triggered by Bot. Commit: 4782304

@tensorrt-cicd
Copy link
Collaborator

PR_Github #25594 [ run ] completed with state ABORTED. Commit: fcf84a8
LLM/main/L0_MergeRequest_PR #19388 (Blue Ocean) completed with status: ABORTED

@mlefeb01
Copy link
Collaborator

/bot run --stage-list "GB200-8_GPUs-2_Nodes-PyTorch-1, GB200-8_GPUs-2_Nodes-PyTorch-2, GB200-8_GPUs-2_Nodes-PyTorch-Post-Merge-1, GB200-8_GPUs-2_Nodes-PyTorch-Post-Merge-2, GB200-8_GPUs-2_Nodes-PyTorch-Post-Merge-3, GB200-4_GPUs-PyTorch-1, GB200-4_GPUs-PyTorch-Post-Merge-1, DGX_H100-2_GPUs-PyTorch-Others-1, DGX_H100-4_GPUs-PyTorch-DeepSeek-1" --disable-fail-fast

@tensorrt-cicd
Copy link
Collaborator

PR_Github #25604 [ run ] triggered by Bot. Commit: e588523

@tensorrt-cicd
Copy link
Collaborator

PR_Github #25595 [ run ] completed with state ABORTED. Commit: 4782304
LLM/main/L0_MergeRequest_PR #19389 (Blue Ocean) completed with status: ABORTED

@mlefeb01
Copy link
Collaborator

/bot run --disable-fail-fast --stage-list "GB200-8_GPUs-2_Nodes-PyTorch-1, GB200-8_GPUs-2_Nodes-PyTorch-2, GB200-8_GPUs-2_Nodes-PyTorch-Post-Merge-1, GB200-8_GPUs-2_Nodes-PyTorch-Post-Merge-2, GB200-8_GPUs-2_Nodes-PyTorch-Post-Merge-3, GB200-4_GPUs-PyTorch-1, GB200-4_GPUs-PyTorch-Post-Merge-1, DGX_H100-2_GPUs-PyTorch-Others-1, DGX_H100-4_GPUs-PyTorch-DeepSeek-1"

@tensorrt-cicd
Copy link
Collaborator

PR_Github #25605 [ run ] triggered by Bot. Commit: e588523

@tensorrt-cicd
Copy link
Collaborator

PR_Github #25604 [ run ] completed with state ABORTED. Commit: e588523
LLM/main/L0_MergeRequest_PR #19396 (Blue Ocean) completed with status: ABORTED

@chzblych
Copy link
Collaborator Author

/bot run --disable-fail-fast --stage-list "GB200-8_GPUs-2_Nodes-PyTorch-1, GB200-8_GPUs-2_Nodes-PyTorch-2, GB200-8_GPUs-2_Nodes-PyTorch-Post-Merge-1, GB200-8_GPUs-2_Nodes-PyTorch-Post-Merge-2, GB200-8_GPUs-2_Nodes-PyTorch-Post-Merge-3, GB200-4_GPUs-PyTorch-1, GB200-4_GPUs-PyTorch-Post-Merge-1, DGX_H100-2_GPUs-PyTorch-Others-1, DGX_H100-4_GPUs-PyTorch-DeepSeek-1"

@tensorrt-cicd
Copy link
Collaborator

PR_Github #25618 [ run ] triggered by Bot. Commit: e588523

@tensorrt-cicd
Copy link
Collaborator

PR_Github #25605 [ run ] completed with state ABORTED. Commit: e588523
LLM/main/L0_MergeRequest_PR #19397 (Blue Ocean) completed with status: ABORTED

@tensorrt-cicd
Copy link
Collaborator

PR_Github #25618 [ run ] completed with state SUCCESS. Commit: e588523
/LLM/main/L0_MergeRequest_PR pipeline #19408 (Partly Tested) completed with status: 'SUCCESS'
Pipeline passed with automatic retried tests. Check the rerun report for details.

@chzblych
Copy link
Collaborator Author

/bot skip --comment "Partial testing is sufficient"

@tensorrt-cicd
Copy link
Collaborator

PR_Github #25677 [ skip ] triggered by Bot. Commit: e588523

@tensorrt-cicd
Copy link
Collaborator

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

@chzblych chzblych merged commit ff02e0f into NVIDIA:main Nov 25, 2025
5 checks passed
@chzblych chzblych deleted the move-oci branch November 25, 2025 07:59
fredricz-20070104 pushed a commit to fredricz-20070104/TensorRT-LLM that referenced this pull request Nov 25, 2025
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.

3 participants