Skip to content

Conversation

bo-nv
Copy link
Collaborator

@bo-nv bo-nv commented Aug 15, 2025

Summary by CodeRabbit

  • Tests
    • Gate specific accuracy and benchmark tests to run only on Hopper GPUs (runtime skips when Hopper not present).
    • Add skips for tests when no Hopper is available.
    • Remove three tests from the l0 DGX test matrix.
    • Update waivers: removed two obsolete SKIP entries.
    • Increase benchmark max sequence length to 384 for context and generation.
    • Simplify an accuracy test by removing a preceding dataset evaluation step.

This MR will fix:
https://nvbugs/5448437
https://nvbugs/5448437

Description

Test Coverage

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.

@bo-nv bo-nv requested a review from a team as a code owner August 15, 2025 08:06
Copy link
Contributor

coderabbitai bot commented Aug 15, 2025

📝 Walkthrough

Walkthrough

Gate two disaggregated accuracy tests to Hopper with skip_no_hopper and an SM-version runtime check; increase disaggregated benchmark max_seq_len to 384; remove three tests from a DGX B200 test list; update waivers; remove an MMLU evaluation from a Qwen test.

Changes

Cohort / File(s) Summary of Changes
Accuracy tests gating
tests/integration/defs/accuracy/test_disaggregated_serving.py
Import skip_no_hopper; add @skip_no_hopper to TestDeepSeekV3Lite.test_nixl_backend and TestQwen3_8B.test_nixl_backend; remove MMLU(self.MODEL_NAME) evaluation from TestQwen3_8B.test_nixl_backend.
Disaggregated benchmark gating & config
tests/integration/defs/disaggregated/test_disaggregated.py
Import get_sm_version; runtime-skip DeepSeek-V3-Lite-fp8 case in test_disaggregated_benchmark_on_diff_backends when get_sm_version() != 90; increase max_seq_len from 320 → 384 for context_servers and generation_servers.
Test list pruning (DGX B200)
tests/integration/test_lists/test-db/l0_dgx_b200.yml
Remove three test entries: disaggregated/test_disaggregated.py::test_disaggregated_benchmark_on_diff_backends[DeepSeek-V3-Lite-fp8], accuracy/test_disaggregated_serving.py::TestQwen3_8B::test_nixl_backend, accuracy/test_disaggregated_serving.py::TestDeepSeekV3Lite::test_nixl_backend.
Waivers update
tests/integration/test_lists/waives.txt
Remove SKIP entries for two previously waived tests (the two accuracy/disaggregated cases), effectively un-waiving them.

Sequence Diagram(s)

sequenceDiagram
    participant Runner as PyTest Runner
    participant Test as accuracy test (test_nixl_backend)
    participant Conf as conftest (skip_no_hopper)

    Runner->>Test: start test_nixl_backend
    Test->>Conf: evaluate @skip_no_hopper
    alt No Hopper
        Conf-->>Runner: skip test
    else Hopper
        Test-->>Runner: run test body
    end
Loading
sequenceDiagram
    participant Runner as PyTest Runner
    participant Bench as test_disaggregated_benchmark_on_diff_backends
    participant Conf as defs.conftest (get_sm_version)

    Runner->>Bench: start DeepSeek-V3-Lite-fp8 case
    Bench->>Conf: get_sm_version()
    alt SM != 90
        Bench-->>Runner: skip this case
    else SM == 90
        Bench-->>Runner: proceed with benchmark (max_seq_len=384)
    end
Loading

Estimated code review effort

🎯 3 (Moderate) | ⏱️ ~20 minutes

Possibly related PRs

Suggested labels

Disaggregated Serving, CI

Suggested reviewers

  • Shixiaowei02
  • litaotju
  • yilin-void

Tip

🔌 Remote MCP (Model Context Protocol) integration is now available!

Pro plan users can now connect to remote MCP servers from the Integrations page. Connect with popular remote MCPs such as Notion and Linear to add more context to your reviews and chats.

✨ Finishing Touches
  • 📝 Generate Docstrings
🧪 Generate unit tests
  • Create PR with unit tests
  • Post copyable unit tests in a comment

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

❤️ Share
🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.

Support

Need help? Create a ticket on our support page for assistance with any issues or questions.

CodeRabbit Commands (Invoked using PR/Issue comments)

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

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai or @coderabbitai title anywhere in the PR title to generate the title automatically.

Status, Documentation and Community

  • Visit our Status Page to check the current availability of CodeRabbit.
  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

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

🔭 Outside diff range comments (1)
tests/integration/defs/disaggregated/test_disaggregated.py (1)

1189-1204: Guard process cleanup to avoid UnboundLocalError on early failures.

If popen/open fails before assigning workers_proc or server_proc, the finally block will reference undefined variables.

Apply this diff to make cleanup robust:

-    try:
+    workers_proc = None
+    server_proc = None
+    try:
         with (  # Start workers
                 open('output_workers.log', 'w') as output_workers,
                 popen(workers_cmd,
                       stdout=output_workers,
                       stderr=subprocess.STDOUT,
                       env=run_env,
                       cwd=cwd) as workers_proc,
                 # Start server
                 open('output_disagg.log', 'w') as output_disagg,
                 popen(server_cmd,
                       stdout=output_disagg,
                       stderr=subprocess.STDOUT,
                       env=run_env,
                       cwd=cwd) as server_proc):
             # Ensure the server has started
             ...
     except Exception:
         ...
     finally:
-        server_proc.terminate()
-        workers_proc.terminate()
-        server_proc.wait()
-        workers_proc.wait()
+        if server_proc is not None:
+            server_proc.terminate()
+            server_proc.wait()
+        if workers_proc is not None:
+            workers_proc.terminate()
+            workers_proc.wait()

You may want to apply the same pattern to run_disaggregated_test() for consistency.

🧹 Nitpick comments (5)
tests/integration/defs/disaggregated/test_disaggregated.py (3)

23-24: Minor: Consider consistent import style across tests.

This file uses absolute imports (defs.conftest), while sibling tests use relative (..conftest). Pick one convention repo-wide to avoid path issues under different test runners.


1251-1253: Runtime gating for DeepSeek-V3-Lite FP8 on non-Hopper is sensible; consider shifting to param-level skip.

Current in-test skip works; optionally, you could skip at parametrization time (e.g., using pytest.param with a mark) or apply a decorator conditioned on the model under test for clearer reporting in CI.


1130-1130: Nit: Fix log typo.

"Ensure the sever has started" → "Ensure the server has started".

Apply this diff:

-            # Ensure the sever has started
+            # Ensure the server has started
tests/integration/defs/accuracy/test_disaggregated_serving.py (2)

652-654: Remove redundant no-op lines.

These two lines read the same dict key without using the result and can be safely removed.

Apply this diff:

-        ctx_server_config["cache_transceiver_config"]
-        ctx_server_config["cache_transceiver_config"]

127-133: Align env vars with selected cache transceiver backend (or drop them).

launch_disaggregated_llm unconditionally sets TRTLLM_USE_UCX_KVCACHE=1 for both ctx/gen servers, while individual tests set cache_transceiver_config to "nixl" or "default". This mismatch can be confusing and may override config depending on server precedence.

Two options:

  • Preferred: rely solely on the explicit cache_transceiver_config and remove env settings:
-        env_ctx = os.environ.copy()
-        env_ctx["TRTLLM_USE_UCX_KVCACHE"] = "1"
+        env_ctx = os.environ.copy()
...
-        env_gen = os.environ.copy()
-        env_gen["TRTLLM_USE_UCX_KVCACHE"] = "1"
+        env_gen = os.environ.copy()
  • Or set env vars conditionally based on the configured backend:
-        env_ctx = os.environ.copy()
-        env_ctx["TRTLLM_USE_UCX_KVCACHE"] = "1"
+        env_ctx = os.environ.copy()
+        ctx_backend = (ctx_server_config.get("cache_transceiver_config", {}) or {}).get("backend", "default")
+        if ctx_backend == "nixl":
+            env_ctx["TRTLLM_USE_NIXL_KVCACHE"] = "1"
+        elif ctx_backend in ("ucx", "default"):
+            env_ctx["TRTLLM_USE_UCX_KVCACHE"] = "1"
...
-        env_gen = os.environ.copy()
-        env_gen["TRTLLM_USE_UCX_KVCACHE"] = "1"
+        env_gen = os.environ.copy()
+        gen_backend = (gen_server_config.get("cache_transceiver_config", {}) or {}).get("backend", "default")
+        if gen_backend == "nixl":
+            env_gen["TRTLLM_USE_NIXL_KVCACHE"] = "1"
+        elif gen_backend in ("ucx", "default"):
+            env_gen["TRTLLM_USE_UCX_KVCACHE"] = "1"

Keeps the intent unambiguous and avoids conflicting signals.

Also applies to: 148-154

📜 Review details

Configuration used: .coderabbit.yaml
Review profile: CHILL
Plan: Pro

💡 Knowledge Base configuration:

  • MCP integration is disabled by default for public repositories
  • Jira integration is disabled by default for public repositories
  • Linear integration is disabled by default for public repositories

You can enable these sources in your CodeRabbit configuration.

📥 Commits

Reviewing files that changed from the base of the PR and between f26db3b and 4a09d88.

📒 Files selected for processing (4)
  • tests/integration/defs/accuracy/test_disaggregated_serving.py (3 hunks)
  • tests/integration/defs/disaggregated/test_disaggregated.py (4 hunks)
  • tests/integration/test_lists/test-db/l0_dgx_b200.yml (0 hunks)
  • tests/integration/test_lists/waives.txt (0 hunks)
💤 Files with no reviewable changes (2)
  • tests/integration/test_lists/test-db/l0_dgx_b200.yml
  • tests/integration/test_lists/waives.txt
🧰 Additional context used
📓 Path-based instructions (2)
**/*.py

📄 CodeRabbit Inference Engine (CODING_GUIDELINES.md)

**/*.py: Python code must target Python 3.8+
Python indentation: 4 spaces, no tabs
Maintain module namespace in imports (from package.subpackage import foo; then use foo.SomeClass())
Python file names use snake_case
Python class names use PascalCase
Python functions/methods and local variables use snake_case; variables starting with a number get k_ prefix (e.g., k_99th_percentile)
Global variables use G_ prefixed UPPER_SNAKE_CASE (e.g., G_MY_GLOBAL)
Constants use UPPER_SNAKE_CASE in Python
Avoid shadowing variables from outer scopes in Python
Initialize all externally visible members of a Python class in init
Prefer docstrings for interfaces used outside a file; comments for local code
Use Google-style docstrings for classes and functions (Sphinx-parsable)
Document attributes/variables inline with short docstrings
Avoid reflection when simple alternatives exist (e.g., prefer explicit parameters over dict(**locals()))
In try/except, catch the narrowest exceptions possible
For duck-typing with try/except, keep try body minimal and put logic in else

Files:

  • tests/integration/defs/disaggregated/test_disaggregated.py
  • tests/integration/defs/accuracy/test_disaggregated_serving.py
**/*.{cpp,cxx,cc,cu,h,hpp,hxx,hh,cuh,py}

📄 CodeRabbit Inference Engine (CODING_GUIDELINES.md)

Prepend NVIDIA copyright header (current year) to all source files

Files:

  • tests/integration/defs/disaggregated/test_disaggregated.py
  • tests/integration/defs/accuracy/test_disaggregated_serving.py
🧠 Learnings (2)
📚 Learning: 2025-07-28T17:06:08.621Z
Learnt from: moraxu
PR: NVIDIA/TensorRT-LLM#6303
File: tests/integration/test_lists/qa/examples_test_list.txt:494-494
Timestamp: 2025-07-28T17:06:08.621Z
Learning: In TensorRT-LLM testing, it's common to have both CLI flow tests (test_cli_flow.py) and PyTorch API tests (test_llm_api_pytorch.py) for the same model. These serve different purposes: CLI flow tests validate the traditional command-line workflow, while PyTorch API tests validate the newer LLM API backend. Both are legitimate and should coexist.

Applied to files:

  • tests/integration/defs/accuracy/test_disaggregated_serving.py
📚 Learning: 2025-08-06T13:58:07.506Z
Learnt from: galagam
PR: NVIDIA/TensorRT-LLM#6487
File: tests/unittest/_torch/auto_deploy/unit/singlegpu/test_ad_trtllm_bench.py:1-12
Timestamp: 2025-08-06T13:58:07.506Z
Learning: In TensorRT-LLM, test files (files under tests/ directories) do not require NVIDIA copyright headers, unlike production source code files. Test files typically start directly with imports, docstrings, or code.

Applied to files:

  • tests/integration/defs/accuracy/test_disaggregated_serving.py
🔇 Additional comments (5)
tests/integration/defs/disaggregated/test_disaggregated.py (2)

23-24: Imports for gating helpers look correct.

Bringing in get_sm_version and skip_no_hopper matches the new gating logic introduced in this PR.


1216-1217: max_seq_len bumped to 384 aligns with benchmark settings.

Given random-input-len=256 and random-output-len=64, a 384 cap provides headroom and avoids premature truncation. Looks good for both context and generation servers.

Also applies to: 1232-1233

tests/integration/defs/accuracy/test_disaggregated_serving.py (3)

24-24: Importing skip_no_hopper here is appropriate.

Matches the Hopper gating applied to the nixl_backend tests.


506-506: Hopper-only gating for DeepSeekV3Lite nixl_backend is correct.

Aligns with the hardware capability requirement introduced elsewhere in the PR.


638-638: Hopper-only gating for Qwen3 nixl_backend is correct.

Keeps fp8/nixl paths constrained to Hopper environments.

@bo-nv bo-nv force-pushed the user/bo/release/1.0/fix-nixl-tests branch from 4a09d88 to 384e7c7 Compare August 15, 2025 08:23
@bo-nv bo-nv changed the title [https://nvbugs/5448437,https://nvbugs/5448449][fix] fix some nixl tests [https://nvbugs/5448437][fix] fix some nixl tests Aug 15, 2025
@bo-nv
Copy link
Collaborator Author

bo-nv commented Aug 15, 2025

/bot run --add-multi-gpu-test

@tensorrt-cicd
Copy link
Collaborator

PR_Github #15424 [ run ] triggered by Bot

@tensorrt-cicd
Copy link
Collaborator

PR_Github #15424 [ run ] completed with state SUCCESS
/LLM/release-1.0/L0_MergeRequest_PR pipeline #140 completed with status: 'SUCCESS'
Pipeline passed with automatic retried tests. Check the rerun report for details.

@bo-nv bo-nv force-pushed the user/bo/release/1.0/fix-nixl-tests branch from 9743e5f to eafcfab Compare August 17, 2025 07:35
@bo-nv
Copy link
Collaborator Author

bo-nv commented Aug 17, 2025

/bot run --add-multi-gpu-test

@tensorrt-cicd
Copy link
Collaborator

PR_Github #15529 [ run ] triggered by Bot

@tensorrt-cicd
Copy link
Collaborator

PR_Github #15529 [ run ] completed with state SUCCESS
/LLM/release-1.0/L0_MergeRequest_PR pipeline #160 completed with status: 'FAILURE'

@bo-nv
Copy link
Collaborator Author

bo-nv commented Aug 17, 2025

/bot run --add-multi-gpu-test

@tensorrt-cicd
Copy link
Collaborator

PR_Github #15540 [ run ] triggered by Bot

@tensorrt-cicd
Copy link
Collaborator

PR_Github #15540 [ run ] completed with state SUCCESS
/LLM/release-1.0/L0_MergeRequest_PR pipeline #161 completed with status: 'FAILURE'

@bo-nv
Copy link
Collaborator Author

bo-nv commented Aug 18, 2025

/bot run --add-multi-gpu-test

@tensorrt-cicd
Copy link
Collaborator

PR_Github #15553 [ run ] triggered by Bot

@bo-nv bo-nv force-pushed the user/bo/release/1.0/fix-nixl-tests branch from eafcfab to 5dd8e94 Compare August 18, 2025 16:17
@bo-nv
Copy link
Collaborator Author

bo-nv commented Aug 18, 2025

/bot run --add-multi-gpu-test

@tensorrt-cicd
Copy link
Collaborator

PR_Github #15635 [ run ] triggered by Bot

@tensorrt-cicd
Copy link
Collaborator

PR_Github #15553 [ run ] completed with state ABORTED

@tensorrt-cicd
Copy link
Collaborator

PR_Github #15635 [ run ] completed with state FAILURE
/LLM/release-1.0/L0_MergeRequest_PR pipeline #178 completed with status: 'FAILURE'

@bo-nv bo-nv force-pushed the user/bo/release/1.0/fix-nixl-tests branch from 5dd8e94 to 5caa636 Compare August 19, 2025 05:25
@bo-nv
Copy link
Collaborator Author

bo-nv commented Aug 19, 2025

/bot run --add-multi-gpu-test

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)
tests/integration/defs/disaggregated/test_disaggregated.py (2)

1216-1217: max_seq_len bumped to 384 matches benchmark input/output lengths

The new 384 setting provides headroom over 256+64=320 used by the benchmark and is consistent across context and generation servers.

Consider factoring 384 into a named constant (e.g., MAX_CONTEXT_LEN) or deriving it from the benchmark parameters to avoid drift between the client args and server config.

Also applies to: 1232-1233


1251-1253: Nit: simplify get_sm_version() call formatting and clarify skip message

Single-line the call for readability and make the reason explicit.

-    if "DeepSeek-V3-Lite" in benchmark_model_root and "fp8" in benchmark_model_root and get_sm_version(
-    ) != 90:
-        pytest.skip("The test should only run on Hopper")
+    if ("DeepSeek-V3-Lite" in benchmark_model_root
+            and "fp8" in benchmark_model_root
+            and get_sm_version() != 90):
+        pytest.skip("Gated: DeepSeek-V3-Lite FP8 is only supported on Hopper (SM90)")
📜 Review details

Configuration used: .coderabbit.yaml
Review profile: CHILL
Plan: Pro

💡 Knowledge Base configuration:

  • MCP integration is disabled by default for public repositories
  • Jira integration is disabled by default for public repositories
  • Linear integration is disabled by default for public repositories

You can enable these sources in your CodeRabbit configuration.

📥 Commits

Reviewing files that changed from the base of the PR and between 5dd8e94 and 5caa636.

📒 Files selected for processing (4)
  • tests/integration/defs/accuracy/test_disaggregated_serving.py (3 hunks)
  • tests/integration/defs/disaggregated/test_disaggregated.py (4 hunks)
  • tests/integration/test_lists/test-db/l0_dgx_b200.yml (0 hunks)
  • tests/integration/test_lists/waives.txt (0 hunks)
💤 Files with no reviewable changes (2)
  • tests/integration/test_lists/test-db/l0_dgx_b200.yml
  • tests/integration/test_lists/waives.txt
🚧 Files skipped from review as they are similar to previous changes (1)
  • tests/integration/defs/accuracy/test_disaggregated_serving.py
🧰 Additional context used
📓 Path-based instructions (2)
**/*.py

📄 CodeRabbit Inference Engine (CODING_GUIDELINES.md)

**/*.py: Python code must target Python 3.8+
Python indentation: 4 spaces, no tabs
Maintain module namespace in imports (from package.subpackage import foo; then use foo.SomeClass())
Python file names use snake_case
Python class names use PascalCase
Python functions/methods and local variables use snake_case; variables starting with a number get k_ prefix (e.g., k_99th_percentile)
Global variables use G_ prefixed UPPER_SNAKE_CASE (e.g., G_MY_GLOBAL)
Constants use UPPER_SNAKE_CASE in Python
Avoid shadowing variables from outer scopes in Python
Initialize all externally visible members of a Python class in init
Prefer docstrings for interfaces used outside a file; comments for local code
Use Google-style docstrings for classes and functions (Sphinx-parsable)
Document attributes/variables inline with short docstrings
Avoid reflection when simple alternatives exist (e.g., prefer explicit parameters over dict(**locals()))
In try/except, catch the narrowest exceptions possible
For duck-typing with try/except, keep try body minimal and put logic in else

Files:

  • tests/integration/defs/disaggregated/test_disaggregated.py
**/*.{cpp,cxx,cc,cu,h,hpp,hxx,hh,cuh,py}

📄 CodeRabbit Inference Engine (CODING_GUIDELINES.md)

Prepend NVIDIA copyright header (current year) to all source files

Files:

  • tests/integration/defs/disaggregated/test_disaggregated.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
🔇 Additional comments (1)
tests/integration/defs/disaggregated/test_disaggregated.py (1)

23-24: LGTM: Importing get_sm_version and skip_no_hopper

The extended import list aligns with the new runtime gating below and keeps related skips centralized in conftest.

@tensorrt-cicd
Copy link
Collaborator

PR_Github #15718 [ run ] triggered by Bot

@tensorrt-cicd
Copy link
Collaborator

PR_Github #15718 [ run ] completed with state SUCCESS
/LLM/release-1.0/L0_MergeRequest_PR pipeline #205 completed with status: 'FAILURE'

@bo-nv
Copy link
Collaborator Author

bo-nv commented Aug 19, 2025

/bot run --add-multi-gpu-test

1 similar comment
@bo-nv
Copy link
Collaborator Author

bo-nv commented Aug 19, 2025

/bot run --add-multi-gpu-test

@tensorrt-cicd
Copy link
Collaborator

PR_Github #15733 [ run ] triggered by Bot

@tensorrt-cicd
Copy link
Collaborator

PR_Github #15733 [ run ] completed with state SUCCESS
/LLM/release-1.0/L0_MergeRequest_PR pipeline #210 completed with status: 'FAILURE'

@bo-nv
Copy link
Collaborator Author

bo-nv commented Aug 20, 2025

/bot run --add-multi-gpu-test

@tensorrt-cicd
Copy link
Collaborator

PR_Github #15837 [ run ] triggered by Bot

@bo-nv bo-nv changed the title [https://nvbugs/5448437][fix] fix some nixl tests [https://nvbugs/5448437][https://nvbugs/5448437][fix] fix some nixl tests Aug 20, 2025
@bo-nv bo-nv changed the title [https://nvbugs/5448437][https://nvbugs/5448437][fix] fix some nixl tests [https://nvbugs/5448437][fix] fix some nixl tests Aug 20, 2025
@tensorrt-cicd
Copy link
Collaborator

PR_Github #15837 [ run ] completed with state SUCCESS
/LLM/release-1.0/L0_MergeRequest_PR pipeline #222 completed with status: 'SUCCESS'

@bo-nv bo-nv enabled auto-merge (squash) August 20, 2025 06:13
@bo-nv bo-nv merged commit df00c81 into NVIDIA:release/1.0 Aug 20, 2025
6 of 7 checks passed
bo-nv added a commit to bo-nv/TensorRT-LLM that referenced this pull request Aug 20, 2025
yuanjingx87 pushed a commit that referenced this pull request Aug 20, 2025
bo-nv added a commit to bo-nv/TensorRT-LLM that referenced this pull request Aug 21, 2025
bo-nv added a commit to bo-nv/TensorRT-LLM that referenced this pull request Aug 22, 2025
bo-nv added a commit to bo-nv/TensorRT-LLM that referenced this pull request Aug 22, 2025
bo-nv added a commit to bo-nv/TensorRT-LLM that referenced this pull request Aug 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.

4 participants