Skip to content

[https://nvbugs/6541356][fix] align cache transceiver harness setup - #17121

Open
chuangz0 wants to merge 3 commits into
NVIDIA:mainfrom
chuangz0:fix/precheck-model-env-fabric-memory
Open

[https://nvbugs/6541356][fix] align cache transceiver harness setup#17121
chuangz0 wants to merge 3 commits into
NVIDIA:mainfrom
chuangz0:fix/precheck-model-env-fabric-memory

Conversation

@chuangz0

@chuangz0 chuangz0 commented Jul 31, 2026

Copy link
Copy Markdown
Collaborator

Description

Fixes NVBug 6541356.

  • Propagate LLM_MODELS_ROOT and PYTEST_COMMON_VARS to the cache-transceiver precheck command so automatic KV-cache-manager selection can load the model configuration instead of silently falling back to V1.
  • Centralize the Python-transceiver/V1 fabric-memory default introduced by [https://nvbugs/6503299][fix] Default fabric memory KV pool for Python cache transceiver #16832 and apply it consistently in serving, the perf-sanity precheck, and examples/disaggregated/slurm/cache_transceiver_test before KV-pool allocation.
  • Preserve explicit TRTLLM_KVCACHE_POOL_USE_FABRIC_MEMORY values and leave C++ transceiver and KV cache manager V2 behavior unchanged.

Root cause

The generated precheck command did not forward the model-root/common environment. Consequently, auto manager resolution could not read the model configuration and selected cache manager V1. In addition, the standalone precheck and SLURM transceiver harness instantiate KV-cache managers directly, bypassing the serving path where #16832 enables fabric memory for the Python transceiver with V1.

Validation

  • pre-commit run --files <changed files>
  • pytest -q tests/unittest/others/test_cache_transceiver_precheck_config.py tests/unittest/others/test_cache_transceiver_precheck_run.py tests/unittest/scripts/test_perf_submit.py tests/unittest/disaggregated/test_cache_transceiver_harness_report.py -k 'not TestInternalApiContract' (104 passed, 11 deselected)
  • python3 -m py_compile for the changed Python modules and tests

The full internal-API/GPU E2E was not run in this clean worktree because the available local TensorRT-LLM bindings predate the current main API.

Dev Engineer Review

  • Centralizes Python-transceiver fabric-memory setup.
  • Applies the default before cache-pool allocation.
  • Preserves explicit settings.
  • Keeps C++ transceiver and KVCacheManagerV2 behavior unchanged.
  • Propagates LLM_MODELS_ROOT and PYTEST_COMMON_VARS with shell-safe quoting.
  • Updates the oci-aga UCX configuration consistently.
  • No test-list changes were identified.
  • Validation passed: pre-commit checks, 104 targeted tests, and Python compilation checks.
  • Full internal-API and GPU E2E validation was not run because local TensorRT-LLM bindings were outdated.

QA Engineer Review

Test code changed in:

  • tests/unittest/others/test_cache_transceiver_precheck_config.py
    • Added parameterized coverage for quoted model-root paths, special characters, missing environment values, and command-variable propagation.
  • tests/unittest/others/test_kv_cache_transceiver.py
    • Added parameterized coverage for Python and C++ transceivers, standard and V2 cache managers, and preset or unset fabric-memory values.
  • tests/unittest/others/test_cache_transceiver_precheck_run.py
    • Added coverage for automatic KVCacheManagerV2 selection for DeepSeek V4.
  • tests/unittest/scripts/test_cluster_env.py
    • Updated coverage for the oci-aga-cs-001 UCX environment.
  • tests/unittest/scripts/test_perf_submit.py
    • Added coverage for extracting LLM_MODELS_ROOT from quoted and unquoted commands, including special characters and missing values.

The new fabric-memory test is listed in tests/integration/test_lists/test-db/l0_sanity_check.yml. The other test functions are not listed in tests/integration/test_lists/ test-db or QA files.

Targeted validation passed.

Verdict: sufficient

@chuangz0 chuangz0 changed the title [NVBUG-6541356][fix] align cache transceiver harness setup [https://nvbugs/6541356][fix] align cache transceiver harness setup Jul 31, 2026
@chuangz0
chuangz0 marked this pull request as ready for review July 31, 2026 09:48
@chuangz0
chuangz0 requested review from a team as code owners July 31, 2026 09:48
@chuangz0
chuangz0 force-pushed the fix/precheck-model-env-fabric-memory branch from 458ac02 to ce1f8d9 Compare July 31, 2026 09:48
@chuangz0

Copy link
Copy Markdown
Collaborator Author

/bot run --stage-list "GB300-56_GPUs-14_Nodes-PyTorch-Disagg-PerfSanity-CTX12-NODE1-GPU4-GEN1-NODE2-GPU8-Post-Merge*"

@tensorrt-cicd

Copy link
Copy Markdown
Collaborator

PR_Github #63016 [ run ] triggered by Bot. Commit: ce1f8d9 Link to invocation

@coderabbitai

coderabbitai Bot commented Jul 31, 2026

Copy link
Copy Markdown
Contributor

Review Change Stack

No actionable comments were generated in the recent review. 🎉

ℹ️ Recent review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Enterprise

Run ID: 7d515d69-4233-4f39-8407-9dd6283bc35a

📥 Commits

Reviewing files that changed from the base of the PR and between f6e7500 and ce7c69f.

📒 Files selected for processing (4)
  • tensorrt_llm/_torch/pyexecutor/kv_cache_transceiver.py
  • tests/integration/test_lists/test-db/l0_sanity_check.yml
  • tests/unittest/others/test_cache_transceiver_precheck_config.py
  • tests/unittest/scripts/test_perf_submit.py
🚧 Files skipped from review as they are similar to previous changes (3)
  • tests/unittest/scripts/test_perf_submit.py
  • tensorrt_llm/_torch/pyexecutor/kv_cache_transceiver.py
  • tests/unittest/others/test_cache_transceiver_precheck_config.py

Walkthrough

The change centralizes fabric-memory setup for Python transceivers, applies it before KV-cache allocation, propagates shell-quoted LLM_MODELS_ROOT values through prechecks, and updates the OCI AGA UCX configuration.

Changes

Fabric-memory setup and precheck integration

Layer / File(s) Summary
Shared fabric-memory helper
tensorrt_llm/_torch/pyexecutor/kv_cache_transceiver.py, tensorrt_llm/_torch/pyexecutor/_util.py, tests/unittest/others/test_kv_cache_transceiver.py
The shared helper enables fabric memory only for Python transceivers with supported cache managers when the environment variable is unset. Existing values remain unchanged.
Cache-manager initialization integration
examples/disaggregated/slurm/cache_transceiver_test/run_cache_transceiver_test.py, tests/scripts/perf-sanity/cache_transceiver_precheck/run_precheck.py, tests/unittest/others/test_cache_transceiver_precheck_run.py, tests/integration/test_lists/test-db/l0_sanity_check.yml
The example runner and precheck invoke the helper before cache allocation or cache-manager construction. The precheck test covers automatic selection of KVCacheManagerV2 for DeepSeek V4.
Model-root propagation in precheck commands
jenkins/scripts/perf/submit.py, jenkins/scripts/perf/local/submit.py, tests/scripts/perf-sanity/cache_transceiver_precheck/precheck_config.py, tests/unittest/others/test_cache_transceiver_precheck_config.py, tests/unittest/scripts/test_perf_submit.py
Submission code extracts LLM_MODELS_ROOT from inbound pytest commands. Precheck commands add the shell-quoted value. Tests cover quoted paths, spaces, apostrophes, missing values, and malformed commands.
OCI AGA UCX configuration
jenkins/scripts/perf/cluster_env.py, tests/unittest/scripts/test_cluster_env.py
The oci-aga rule uses CUDA, shared-memory, self, and IPv4 TCP transports. The expected environment export matches the new settings.

Estimated code review effort: 3 (Moderate) | ~25 minutes

Sequence Diagram(s)

sequenceDiagram
  participant PerfSubmit
  participant PrecheckConfig
  participant run_precheck
  participant FabricMemoryHelper
  participant KVCacheManager
  PerfSubmit->>PrecheckConfig: pass shell-quoted LLM_MODELS_ROOT
  PrecheckConfig->>run_precheck: generate context and generation commands
  run_precheck->>FabricMemoryHelper: configure resolved transceiver and cache manager
  FabricMemoryHelper->>KVCacheManager: set fabric-memory default before construction
Loading

Possibly related PRs

Suggested reviewers: qijune

🚥 Pre-merge checks | ✅ 4 | ❌ 1

❌ Failed checks (1 warning)

Check name Status Explanation Resolution
Docstring Coverage ⚠️ Warning Docstring coverage is 21.05% which is insufficient. The required threshold is 80.00%. Write docstrings for the functions missing them to satisfy the coverage threshold.
✅ Passed checks (4 passed)
Check name Status Explanation
Title check ✅ Passed The title follows the required ticket and type format and clearly describes the cache-transceiver harness alignment fix.
Description check ✅ Passed The description explains the cause, solution, preserved behavior, and validation results, although it omits the template's separate checklist sections.
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.
✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests

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

@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 (2)
tensorrt_llm/_torch/pyexecutor/kv_cache_transceiver.py (1)

38-46: 📐 Maintainability & Code Quality | 🔵 Trivial | ⚡ Quick win

Document the public helper parameters.

Add a Google-style Args: section for cache_transceiver_config and kv_cache_manager_cls. This helper is imported outside its defining module.

Proposed documentation update
     """Default the C++ V1 KV pool to fabric memory for the Python transceiver.
 
     This must run before any KV pool allocation because the C++ environment
     getter caches the value on first read. Explicit user settings are always
     respected.
+
+    Args:
+        cache_transceiver_config: Configuration that selects the transceiver.
+        kv_cache_manager_cls: KV-cache manager class to evaluate.
     """
🤖 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 `@tensorrt_llm/_torch/pyexecutor/kv_cache_transceiver.py` around lines 38 - 46,
Update the docstring for maybe_enable_fabric_memory_for_python_transceiver with
a Google-style Args: section documenting cache_transceiver_config and
kv_cache_manager_cls, including their roles and expected types. Preserve the
existing behavior and explanatory text.

Source: Coding guidelines

tests/unittest/others/test_kv_cache_transceiver.py (1)

47-67: 📐 Maintainability & Code Quality | 🔵 Trivial | ⚡ Quick win

Add the new test to tests/integration/test_lists/test-db/l0_sanity_check.yml.

The test covers four parameterized cases, but only other tests from test_kv_cache_transceiver.py are listed. Coverage verdict: insufficient.

🤖 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/others/test_kv_cache_transceiver.py` around lines 47 - 67, Add
test_maybe_enable_fabric_memory_for_python_transceiver from
test_kv_cache_transceiver.py to
tests/integration/test_lists/test-db/l0_sanity_check.yml so all four
parameterized cases are included in the integration test list.

Source: Path instructions

🤖 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/scripts/perf-sanity/cache_transceiver_precheck/precheck_config.py`:
- Line 167: The shlex.quote() call on line 167 produces single-quote escaping
that breaks when the quoted value is embedded in the double-quoted export
statements on lines 177-180. Replace the quoting strategy for model_root_env to
survive embedding in double-quoted strings, either by passing LLM_MODELS_ROOT as
a runtime environment variable without shell string interpolation or by quoting
the entire export value instead of the path alone. Add a regression test that
validates the fix with a path containing an apostrophe.

---

Nitpick comments:
In `@tensorrt_llm/_torch/pyexecutor/kv_cache_transceiver.py`:
- Around line 38-46: Update the docstring for
maybe_enable_fabric_memory_for_python_transceiver with a Google-style Args:
section documenting cache_transceiver_config and kv_cache_manager_cls, including
their roles and expected types. Preserve the existing behavior and explanatory
text.

In `@tests/unittest/others/test_kv_cache_transceiver.py`:
- Around line 47-67: Add test_maybe_enable_fabric_memory_for_python_transceiver
from test_kv_cache_transceiver.py to
tests/integration/test_lists/test-db/l0_sanity_check.yml so all four
parameterized cases are included in the integration test list.
🪄 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: 49468c21-5a6c-412d-820a-cb887e0184ef

📥 Commits

Reviewing files that changed from the base of the PR and between d924d9f and ce1f8d9.

📒 Files selected for processing (7)
  • examples/disaggregated/slurm/cache_transceiver_test/run_cache_transceiver_test.py
  • tensorrt_llm/_torch/pyexecutor/_util.py
  • tensorrt_llm/_torch/pyexecutor/kv_cache_transceiver.py
  • tests/scripts/perf-sanity/cache_transceiver_precheck/precheck_config.py
  • tests/scripts/perf-sanity/cache_transceiver_precheck/run_precheck.py
  • tests/unittest/others/test_cache_transceiver_precheck_config.py
  • tests/unittest/others/test_kv_cache_transceiver.py

Comment thread tests/scripts/perf-sanity/cache_transceiver_precheck/precheck_config.py Outdated
@tensorrt-cicd

Copy link
Copy Markdown
Collaborator

PR_Github #63016 [ run ] completed with state SUCCESS. Commit: ce1f8d9
/LLM/main/L0_MergeRequest_PR pipeline #51124 (Partly Tested) completed with status: 'SUCCESS'

CI Report

Link to invocation

@mikeiovine
mikeiovine requested a review from Mgluhovskoi July 31, 2026 15:47
Comment on lines +557 to +571
# The C++ fabric-memory env getter is cached on its first KV pool
# allocation. Enable the default before any matrix case builds a pool, even
# when a C++ transceiver case appears before Python+V1 in the matrix.
python_v1_case = next(
(case for case in cases if case["runtime"] == "PYTHON" and case["cache_manager"] == "V1"),
None,
)
if python_v1_case is not None:
maybe_enable_fabric_memory_for_python_transceiver(
CacheTransceiverConfig(
backend=python_v1_case["backend"],
transceiver_runtime="PYTHON",
),
KVCacheManager,
)

@Mgluhovskoi Mgluhovskoi Jul 31, 2026

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.

Is using fabric-backed pools for C++/V1 intentional in this harness? Could this affect the C++ baseline or bandwidth comparison relative to previous runs? If C++/V1 should keep ordinary pools while Python/V1 uses fabric memory, would the cases need to run in separate processes?

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

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

When the KV cache pool is allocated from fabric memory, KV cache transfers on GB200 can use MNNVL and achieve higher bandwidth.

This is a standalone KV cache transfer test, should use the aligned configuration.
We have not observed any measurable performance regression from using fabric memory compared with memory allocated through cudaMalloc. In addition, KV Cache Manager V2 also allocates its
memory using VMM with fabric-memory support.

@chuangz0

chuangz0 commented Aug 3, 2026

Copy link
Copy Markdown
Collaborator Author

/bot run --disable-fail-fast

@tensorrt-cicd

Copy link
Copy Markdown
Collaborator

PR_Github #63342 [ run ] triggered by Bot. Commit: ce1f8d9 Link to invocation

@chuangz0
chuangz0 requested a review from a team as a code owner August 3, 2026 05:27
@chuangz0
chuangz0 requested review from mlefeb01 and mzweilz August 3, 2026 05:27
Signed-off-by: Chuang Zhu <111838961+chuangz0@users.noreply.github.com>
Signed-off-by: Chuang Zhu <111838961+chuangz0@users.noreply.github.com>

@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: 2

🤖 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/unittest/others/test_cache_transceiver_precheck_config.py`:
- Around line 368-376: Update the test setup before the precheck_prefix_lines
call to also remove the TRTLLM_DISAGG_CT_PRECHECK environment variable with
monkeypatch, while preserving the existing LLM_MODELS_ROOT cleanup and test
arguments.

In `@tests/unittest/scripts/test_perf_submit.py`:
- Around line 103-123: Add a test near test_ci_missing_model_root_is_detectable
that passes an unterminated-quote pytestCommand prefix to
ci_submit_module._get_pytest_command_env_var and asserts it raises ValueError.
Keep the existing valid-command and missing-variable coverage 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: 0e901ae8-3a8a-490a-a39c-a64512c2bbcc

📥 Commits

Reviewing files that changed from the base of the PR and between ce1f8d9 and d26e663.

📒 Files selected for processing (8)
  • jenkins/scripts/perf/cluster_env.py
  • jenkins/scripts/perf/local/submit.py
  • jenkins/scripts/perf/submit.py
  • tests/scripts/perf-sanity/cache_transceiver_precheck/precheck_config.py
  • tests/unittest/others/test_cache_transceiver_precheck_config.py
  • tests/unittest/others/test_cache_transceiver_precheck_run.py
  • tests/unittest/scripts/test_cluster_env.py
  • tests/unittest/scripts/test_perf_submit.py
🚧 Files skipped from review as they are similar to previous changes (1)
  • tests/scripts/perf-sanity/cache_transceiver_precheck/precheck_config.py

Comment thread tests/unittest/others/test_cache_transceiver_precheck_config.py
Comment thread tests/unittest/scripts/test_perf_submit.py
@chuangz0
chuangz0 force-pushed the fix/precheck-model-env-fabric-memory branch from d26e663 to f6e7500 Compare August 3, 2026 06:44
@tensorrt-cicd

Copy link
Copy Markdown
Collaborator

PR_Github #63342 [ run ] completed with state FAILURE. Commit: ce1f8d9
/LLM/main/L0_MergeRequest_PR pipeline #51332 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

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

🧹 Nitpick comments (1)
tests/unittest/others/test_cache_transceiver_precheck_config.py (1)

365-365: 📐 Maintainability & Code Quality | 🔵 Trivial | ⚡ Quick win

Apply the function-annotation rule consistently to both new tests.

  • tests/unittest/others/test_cache_transceiver_precheck_config.py#L365-L365: annotate the fixture and model-root parameters and return None, or verify an explicit permissive typing exception.
  • tests/unittest/others/test_cache_transceiver_precheck_run.py#L400-L400: annotate the fixture parameters and return None, or verify an explicit permissive typing exception.

As per coding guidelines, Python functions must be annotated. Based on learnings, permissive untyped test methods require an explicit submodule typing configuration.

🤖 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/others/test_cache_transceiver_precheck_config.py` at line 365,
Annotate the new test function test_precheck_commands_propagate_model_root in
tests/unittest/others/test_cache_transceiver_precheck_config.py at lines 365-365
with types for its fixture and model-root parameters and a None return type, or
add the required explicit permissive typing configuration. Apply the same
fixture-parameter and None-return annotations, or equivalent typing exception,
to the new test at tests/unittest/others/test_cache_transceiver_precheck_run.py
lines 400-400.

Sources: Coding guidelines, Learnings

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

Nitpick comments:
In `@tests/unittest/others/test_cache_transceiver_precheck_config.py`:
- Line 365: Annotate the new test function
test_precheck_commands_propagate_model_root in
tests/unittest/others/test_cache_transceiver_precheck_config.py at lines 365-365
with types for its fixture and model-root parameters and a None return type, or
add the required explicit permissive typing configuration. Apply the same
fixture-parameter and None-return annotations, or equivalent typing exception,
to the new test at tests/unittest/others/test_cache_transceiver_precheck_run.py
lines 400-400.

ℹ️ Review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Enterprise

Run ID: 082e16ca-d7db-4e84-b872-c679fca70dd2

📥 Commits

Reviewing files that changed from the base of the PR and between d26e663 and f6e7500.

📒 Files selected for processing (13)
  • examples/disaggregated/slurm/cache_transceiver_test/run_cache_transceiver_test.py
  • jenkins/scripts/perf/cluster_env.py
  • jenkins/scripts/perf/local/submit.py
  • jenkins/scripts/perf/submit.py
  • tensorrt_llm/_torch/pyexecutor/_util.py
  • tensorrt_llm/_torch/pyexecutor/kv_cache_transceiver.py
  • tests/scripts/perf-sanity/cache_transceiver_precheck/precheck_config.py
  • tests/scripts/perf-sanity/cache_transceiver_precheck/run_precheck.py
  • tests/unittest/others/test_cache_transceiver_precheck_config.py
  • tests/unittest/others/test_cache_transceiver_precheck_run.py
  • tests/unittest/others/test_kv_cache_transceiver.py
  • tests/unittest/scripts/test_cluster_env.py
  • tests/unittest/scripts/test_perf_submit.py
🚧 Files skipped from review as they are similar to previous changes (11)
  • tests/unittest/others/test_kv_cache_transceiver.py
  • jenkins/scripts/perf/local/submit.py
  • tests/unittest/scripts/test_cluster_env.py
  • tensorrt_llm/_torch/pyexecutor/_util.py
  • jenkins/scripts/perf/cluster_env.py
  • tests/scripts/perf-sanity/cache_transceiver_precheck/run_precheck.py
  • tests/scripts/perf-sanity/cache_transceiver_precheck/precheck_config.py
  • tests/unittest/scripts/test_perf_submit.py
  • jenkins/scripts/perf/submit.py
  • examples/disaggregated/slurm/cache_transceiver_test/run_cache_transceiver_test.py
  • tensorrt_llm/_torch/pyexecutor/kv_cache_transceiver.py

Signed-off-by: Chuang Zhu <111838961+chuangz0@users.noreply.github.com>
@chuangz0
chuangz0 requested a review from a team as a code owner August 3, 2026 07:10
@chuangz0

chuangz0 commented Aug 3, 2026

Copy link
Copy Markdown
Collaborator Author

/bot run --stage-list "GB300-56_GPUs-14_Nodes-PyTorch-Disagg-PerfSanity-CTX12-NODE1-GPU4-GEN1-NODE2-GPU8-Post-Merge*"

@tensorrt-cicd

Copy link
Copy Markdown
Collaborator

PR_Github #63388 [ run ] triggered by Bot. Commit: ce7c69f Link to invocation

@tensorrt-cicd

Copy link
Copy Markdown
Collaborator

PR_Github #63388 [ run ] completed with state FAILURE. Commit: ce7c69f
/LLM/main/L0_MergeRequest_PR pipeline #51365 (Partly Tested) 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

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