Skip to content

Conversation

@mikeiovine
Copy link
Collaborator

@mikeiovine mikeiovine commented Dec 15, 2025

Description

Add sampling support to MTP 1-model. Same approach as EAGLE3.

Also refactored a few things to avoid code duplication. Introduced a new SpecWorkerBase to facilitate the reuse.

Test Coverage

Made existing DSV3 Lite accuracy tests use sampling params when MTP is enabled.

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.

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

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.

Summary by CodeRabbit

  • Refactor
    • Restructured speculative decoding worker architecture with a new unified base interface for all worker implementations.
    • Standardized draft length property and sampling configuration across Eagle3 and MTP worker classes.
    • Updated sampling parameter handling for MTP-based speculative decoding.

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

@mikeiovine mikeiovine marked this pull request as ready for review December 15, 2025 21:39
@mikeiovine mikeiovine requested a review from a team as a code owner December 15, 2025 21:39
@mikeiovine mikeiovine requested a review from sunnyqgg December 15, 2025 21:39
@mikeiovine
Copy link
Collaborator Author

/bot run

@coderabbitai
Copy link
Contributor

coderabbitai bot commented Dec 15, 2025

📝 Walkthrough

Walkthrough

This change introduces a new abstract base class SpecWorkerBase to standardize the interface for speculative decoding workers. Multiple worker implementations (Eagle3OneModelWorker, MTPWorker) are refactored to inherit from this base class instead of directly from nn.Module, consolidating common functionality like max_draft_len property, set_guided_decoder method, and token sampling logic into a shared interface.

Changes

Cohort / File(s) Summary
Base class and interface
tensorrt_llm/_torch/speculative/interface.py, tensorrt_llm/_torch/speculative/__init__.py
Introduced SpecWorkerBase abstract base class with max_draft_len property, set_guided_decoder method, and _sample_tokens_for_batch implementation. Added get_force_num_accepted_tokens() utility function. Exported SpecWorkerBase in module __all__.
Worker implementations
tensorrt_llm/_torch/speculative/eagle3.py, tensorrt_llm/_torch/speculative/mtp.py
Updated both Eagle3OneModelWorker and MTPWorker to inherit from SpecWorkerBase instead of nn.Module. Added max_draft_len property to each. Removed redundant set_guided_decoder methods and delegated token sampling to inherited _sample_tokens_for_batch. Updated imports accordingly.
Test configuration
tests/integration/defs/accuracy/test_llm_api_pytorch.py
Added explicit handling of sampling_params when MTP decoding is active (mtp_nextn > 0), ensuring sampling_params is None otherwise and passed to GSM8K evaluation only when applicable.

Estimated code review effort

🎯 3 (Moderate) | ⏱️ ~40 minutes

  • interface.py: Verify the token sampling logic in _sample_tokens_for_batch, especially the use of spec_metadata.allow_advanced_sampling and fallback to greedy argmax, and ensure the temperature/top_k/top_p extraction is correct.
  • eagle3.py & mtp.py: Confirm that the migration to SpecWorkerBase inheritance is complete and that all callers of removed methods (set_guided_decoder, _sample_tokens_for_batch) are updated or removed.
  • test_llm_api_pytorch.py: Verify the conditional logic for sampling_params creation aligns with test expectations.

Pre-merge checks and finishing touches

❌ Failed checks (1 warning)
Check name Status Explanation Resolution
Docstring Coverage ⚠️ Warning Docstring coverage is 35.00% which is insufficient. The required threshold is 80.00%. You can run @coderabbitai generate docstrings to improve docstring coverage.
✅ Passed checks (2 passed)
Check name Status Explanation
Title check ✅ Passed The title clearly summarizes the main change: implementing sampling support for MTP 1-model, which is directly reflected in the changeset across multiple files.
Description check ✅ Passed The PR description addresses the key requirements: it explains the purpose (add sampling support to MTP 1-model), the approach (same as EAGLE3), mentions refactoring to reduce duplication, identifies the new SpecWorkerBase abstraction, and documents test coverage (DSV3 Lite accuracy tests modified for sampling params).
✨ Finishing touches
  • 📝 Generate docstrings
🧪 Generate unit tests (beta)
  • 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

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

Caution

Some comments are outside the diff and can’t be posted inline due to platform limitations.

⚠️ Outside diff range comments (1)
tensorrt_llm/_torch/speculative/interface.py (1)

24-38: Guard against negative values in TLLM_SPEC_DECODE_FORCE_NUM_ACCEPTED_TOKENS

get_force_num_accepted_tokens() accepts any integer, including negatives, and force_num_accepted_tokens is later used to overwrite num_accepted_tokens. A negative override would be nonsensical and could lead to invalid lengths or indexing in downstream logic.

Consider clamping to non‑negative values (e.g., treat < 0 as 0 with a warning) instead of accepting arbitrary ints:

-    try:
-        return int(env_value)
+    try:
+        value = int(env_value)
+        if value < 0:
+            logger.warning(
+                f"{FORCE_NUM_ACCEPTED_TOKENS_ENV_VAR} must be non-negative, "
+                f"got '{env_value}'. Using default value 0.")
+            return 0
+        return value
🧹 Nitpick comments (3)
tensorrt_llm/_torch/speculative/eagle3.py (1)

546-559: Clarify draft_decoder docstring vs actual behavior

The docstring now says “Sampling draft tokens with support for non-greedy sampling.” but the implementation still does a plain torch.argmax over logits; non‑greedy sampling is handled earlier for target tokens via the shared sampler, not here.

Consider rephrasing the docstring to avoid implying that this method itself performs non‑greedy sampling (or document explicitly that draft tokens remain greedy).

tensorrt_llm/_torch/speculative/interface.py (1)

361-420: Add invariants / fallbacks around advanced sampling in _sample_tokens_for_batch

The advanced path assumes:

  • spec_metadata.temperatures, top_ks, top_ps are initialized and long enough, and
  • num_tokens = num_contexts + num_gens * (self.max_draft_len + 1) matches logits.shape[0].

If upstream code forgets to call populate_sampling_params_for_one_model or changes the logits layout, this will fail with hard‑to‑debug runtime errors.

Consider:

  • Adding a sanity check on shapes (e.g., assert logits.shape[0] == num_tokens) in debug builds, and
  • Either asserting or gracefully falling back to greedy sampling when any of temperatures/top_ks/top_ps is None or too short.

This keeps the base class robust against future changes in caller assumptions.

tensorrt_llm/_torch/speculative/mtp.py (1)

761-762: Outdated docstring: sampling is no longer limited to greedy.

The docstring states "Currently only support greedy sampling" but with the new _sample_tokens_for_batch integration, advanced sampling (temperature, top-k, top-p) is now supported when enabled via spec_metadata.allow_advanced_sampling.

         Currently only support greedy sampling. All decoding is done using Top1 and token equality is used
-        for acceptance.
+        for acceptance when advanced sampling is disabled. When enabled, temperature, top-k, and top-p
+        sampling are also supported.
📜 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 9ba1426 and 9a94402.

📒 Files selected for processing (5)
  • tensorrt_llm/_torch/speculative/__init__.py (2 hunks)
  • tensorrt_llm/_torch/speculative/eagle3.py (3 hunks)
  • tensorrt_llm/_torch/speculative/interface.py (2 hunks)
  • tensorrt_llm/_torch/speculative/mtp.py (3 hunks)
  • tests/integration/defs/accuracy/test_llm_api_pytorch.py (2 hunks)
🧰 Additional context used
📓 Path-based instructions (2)
**/*.py

📄 CodeRabbit inference engine (CODING_GUIDELINES.md)

**/*.py: The code developed for TensorRT-LLM should conform to Python 3.8+
Indent Python code with 4 spaces; do not use tabs
Always maintain the namespace when importing in Python, even if only one class or function from a module is used (e.g., use from package.subpackage import foo and then foo.SomeClass() instead of from package.subpackage.foo import SomeClass)
Python filenames should use snake_case (e.g., some_file.py)
Python class names should use PascalCase (e.g., class SomeClass)
Python function and method names should use snake_case (e.g., def my_awesome_function():)
Python local variable names should use snake_case, with prefix k for variable names that start with a number (e.g., k_99th_percentile = ...)
Python global variables should use upper snake_case with prefix G (e.g., G_MY_GLOBAL = ...)
Python constants should use upper snake_case (e.g., MY_CONSTANT = ...)
Avoid shadowing variables declared in an outer scope in Python
Initialize all externally visible members of a Python class in the constructor
For Python interfaces that may be used outside a file, prefer docstrings over comments
Python comments should be reserved for code within a function, or interfaces that are local to a file
Use Google style docstrings for Python classes and functions, which can be parsed by Sphinx
Python attributes and variables can be documented inline with type and description (e.g., self.x = 5 followed by """<type>: Description of 'x'""" )
Avoid using reflection in Python when functionality can be easily achieved without reflection
When using try-except blocks in Python, limit the except clause to the smallest set of specific errors possible instead of catching all exceptions
When using try-except blocks in Python to handle multiple possible variable types (duck-typing), keep the body of the try as small as possible and use the else block to implement the logic

Files:

  • tensorrt_llm/_torch/speculative/__init__.py
  • tensorrt_llm/_torch/speculative/mtp.py
  • tensorrt_llm/_torch/speculative/interface.py
  • tests/integration/defs/accuracy/test_llm_api_pytorch.py
  • tensorrt_llm/_torch/speculative/eagle3.py
**/*.{cpp,h,cu,py}

📄 CodeRabbit inference engine (CODING_GUIDELINES.md)

All TensorRT-LLM Open Source Software code files should contain an NVIDIA copyright header that includes the current year at the top

Files:

  • tensorrt_llm/_torch/speculative/__init__.py
  • tensorrt_llm/_torch/speculative/mtp.py
  • tensorrt_llm/_torch/speculative/interface.py
  • tests/integration/defs/accuracy/test_llm_api_pytorch.py
  • tensorrt_llm/_torch/speculative/eagle3.py
🧠 Learnings (3)
📚 Learning: 2025-08-14T15:38:01.771Z
Learnt from: MatthiasKohl
Repo: NVIDIA/TensorRT-LLM PR: 6904
File: cpp/tensorrt_llm/pybind/thop/bindings.cpp:55-57
Timestamp: 2025-08-14T15:38:01.771Z
Learning: In TensorRT-LLM Python bindings, tensor parameter collections like mla_tensor_params and spec_decoding_tensor_params are kept as required parameters without defaults to maintain API consistency, even when it might affect backward compatibility.

Applied to files:

  • tests/integration/defs/accuracy/test_llm_api_pytorch.py
📚 Learning: 2025-08-26T09:37:10.463Z
Learnt from: jiaganc
Repo: NVIDIA/TensorRT-LLM PR: 7031
File: tensorrt_llm/bench/dataclasses/configuration.py:90-104
Timestamp: 2025-08-26T09:37:10.463Z
Learning: In TensorRT-LLM's bench configuration, the `get_pytorch_perf_config()` method returns `self.pytorch_config` which is a Dict[str, Any] that can contain default values including `cuda_graph_config`, making the fallback `llm_args["cuda_graph_config"]` safe to use.

Applied to files:

  • tests/integration/defs/accuracy/test_llm_api_pytorch.py
📚 Learning: 2025-08-26T09:37:10.463Z
Learnt from: jiaganc
Repo: NVIDIA/TensorRT-LLM PR: 7031
File: tensorrt_llm/bench/dataclasses/configuration.py:90-104
Timestamp: 2025-08-26T09:37:10.463Z
Learning: In TensorRT-LLM, the `get_pytorch_perf_config()` method returns `self.pytorch_config` which can contain default `cuda_graph_config` values, so `llm_args` may already have this config before the extra options processing.

Applied to files:

  • tests/integration/defs/accuracy/test_llm_api_pytorch.py
🧬 Code graph analysis (4)
tensorrt_llm/_torch/speculative/__init__.py (1)
tensorrt_llm/_torch/speculative/interface.py (2)
  • SpecMetadata (183-358)
  • SpecWorkerBase (361-420)
tensorrt_llm/_torch/speculative/mtp.py (2)
tensorrt_llm/_torch/speculative/interface.py (3)
  • SpecMetadata (183-358)
  • max_draft_len (374-378)
  • _sample_tokens_for_batch (385-420)
tensorrt_llm/_torch/speculative/eagle3.py (1)
  • max_draft_len (367-368)
tensorrt_llm/_torch/speculative/interface.py (5)
tensorrt_llm/_torch/pyexecutor/guided_decoder.py (1)
  • CapturableGuidedDecoder (420-569)
tensorrt_llm/_torch/speculative/eagle3.py (1)
  • max_draft_len (367-368)
tensorrt_llm/_torch/speculative/mtp.py (1)
  • max_draft_len (359-360)
tensorrt_llm/_torch/pyexecutor/model_engine.py (1)
  • set_guided_decoder (478-485)
tensorrt_llm/_torch/speculative/one_model_sampler.py (1)
  • sampling_batch_spec_dec_one_model (76-91)
tensorrt_llm/_torch/speculative/eagle3.py (2)
tensorrt_llm/_torch/speculative/interface.py (2)
  • SpecMetadata (183-358)
  • max_draft_len (374-378)
tensorrt_llm/_torch/speculative/mtp.py (1)
  • max_draft_len (359-360)
⏰ 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 (6)
tensorrt_llm/_torch/speculative/__init__.py (1)

3-3: Expose SpecWorkerBase in public speculative API

Importing SpecWorkerBase from .interface and adding it to __all__ is consistent with the new shared worker abstraction and keeps the public surface coherent with SpecMetadata. Looks good.

Also applies to: 22-22

tests/integration/defs/accuracy/test_llm_api_pytorch.py (1)

1343-1348: Wire sampling params only when MTP is enabled

Conditionally building mtp_config and sampling_params for mtp_nextn > 0 and passing sampling_params into GSM8K.evaluate keeps the non‑MTP path unchanged while exercising the new 1‑model sampling behavior. This looks correct and consistent with nearby tests.

Also applies to: 1357-1357

tensorrt_llm/_torch/speculative/eagle3.py (1)

14-15: Refactor Eagle3OneModelWorker to use SpecWorkerBase

Switching Eagle3OneModelWorker to inherit from SpecWorkerBase, calling super().__init__(), and exposing max_draft_len via spec_config cleanly aligns Eagle3 1‑model with the shared speculative worker interface (common sampling, guided decoder handling). The refactor is coherent and low risk.

Also applies to: 359-369

tensorrt_llm/_torch/speculative/mtp.py (3)

18-18: LGTM!

Import correctly updated to bring in SpecMetadata and SpecWorkerBase from the interface module, following the namespace import convention.


350-360: LGTM!

The refactoring to inherit from SpecWorkerBase and the new max_draft_len property implementation are correct. The property returns num_nextn_predict_layers, which aligns with how this value is used throughout the file (as mtp_num_modules) and matches the expected interface from the base class.


892-893: Correct integration with the base class sampling method.

The change to use _sample_tokens_for_batch enables both greedy and advanced sampling (temperature, top-k, top-p) based on spec_metadata.allow_advanced_sampling.

@tensorrt-cicd
Copy link
Collaborator

PR_Github #28448 [ run ] triggered by Bot. Commit: 9a94402

@mikeiovine
Copy link
Collaborator Author

/bot run

@tensorrt-cicd
Copy link
Collaborator

PR_Github #28454 [ run ] triggered by Bot. Commit: dabe1c4

@mikeiovine mikeiovine requested a review from a team as a code owner December 15, 2025 22:52
@mikeiovine mikeiovine requested a review from achartier December 15, 2025 22:52
@mikeiovine mikeiovine force-pushed the 1-model-sampler-mtp branch 3 times, most recently from 9612a78 to 69e0391 Compare December 16, 2025 00:11
@mikeiovine
Copy link
Collaborator Author

/bot run

@tensorrt-cicd
Copy link
Collaborator

PR_Github #28464 [ run ] triggered by Bot. Commit: 69e0391

@tensorrt-cicd
Copy link
Collaborator

PR_Github #28464 [ run ] completed with state SUCCESS. Commit: 69e0391
/LLM/main/L0_MergeRequest_PR pipeline #21792 completed with status: 'FAILURE'

@mikeiovine mikeiovine force-pushed the 1-model-sampler-mtp branch 2 times, most recently from 85f5295 to 5c88b34 Compare December 16, 2025 16:04
@mikeiovine
Copy link
Collaborator Author

/bot run

@tensorrt-cicd
Copy link
Collaborator

PR_Github #28600 [ run ] triggered by Bot. Commit: 5c88b34

@tensorrt-cicd
Copy link
Collaborator

PR_Github #28600 [ run ] completed with state FAILURE. Commit: 5c88b34
/LLM/main/L0_MergeRequest_PR pipeline #21915 completed with status: 'FAILURE'

⚠️ 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

@mikeiovine
Copy link
Collaborator Author

/bot run

@tensorrt-cicd
Copy link
Collaborator

PR_Github #28604 [ run ] triggered by Bot. Commit: 0f2144c

@tensorrt-cicd
Copy link
Collaborator

PR_Github #28604 [ run ] completed with state SUCCESS. Commit: 0f2144c
/LLM/main/L0_MergeRequest_PR pipeline #21919 completed with status: 'FAILURE'

⚠️ 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

@mikeiovine
Copy link
Collaborator Author

/bot run

1 similar comment
@tburt-nv
Copy link
Collaborator

/bot run

@tensorrt-cicd
Copy link
Collaborator

PR_Github #28823 [ run ] triggered by Bot. Commit: f00ff93

@tensorrt-cicd
Copy link
Collaborator

PR_Github #28823 [ run ] completed with state SUCCESS. Commit: f00ff93
/LLM/main/L0_MergeRequest_PR pipeline #22070 completed with status: 'FAILURE'

⚠️ 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

@mikeiovine
Copy link
Collaborator Author

/bot run

@tensorrt-cicd
Copy link
Collaborator

PR_Github #29164 [ run ] triggered by Bot. Commit: b184cc8

@tensorrt-cicd
Copy link
Collaborator

PR_Github #29164 [ run ] completed with state SUCCESS. Commit: b184cc8
/LLM/main/L0_MergeRequest_PR pipeline #22370 completed with status: 'FAILURE'

⚠️ 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

Signed-off-by: Mike Iovine <[email protected]>
@mikeiovine
Copy link
Collaborator Author

/bot run --disable-fail-fast

@tensorrt-cicd
Copy link
Collaborator

PR_Github #30193 [ run ] triggered by Bot. Commit: a026a9e

@tensorrt-cicd
Copy link
Collaborator

PR_Github #30193 [ run ] completed with state SUCCESS. Commit: a026a9e
/LLM/main/L0_MergeRequest_PR pipeline #23239 completed with status: 'FAILURE'

⚠️ 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

@mikeiovine
Copy link
Collaborator Author

/bot run --disable-fail-fast

@tensorrt-cicd
Copy link
Collaborator

PR_Github #30291 [ run ] triggered by Bot. Commit: a026a9e

@tensorrt-cicd
Copy link
Collaborator

PR_Github #30291 [ run ] completed with state SUCCESS. Commit: a026a9e
/LLM/main/L0_MergeRequest_PR pipeline #23325 completed with status: 'SUCCESS'

@mikeiovine mikeiovine merged commit 9085021 into NVIDIA:main Dec 31, 2025
5 checks passed
@mikeiovine mikeiovine deleted the 1-model-sampler-mtp branch December 31, 2025 18:48
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