Skip to content

Conversation

@brb-nv
Copy link
Collaborator

@brb-nv brb-nv commented Jul 31, 2025

Description

This MR fixes Gemma3 1B decoder generating gibberish with FP8 checkpoint.
https://nvbugspro.nvidia.com/bug/5421528

Root cause: Linear layers constituting MLP aren't receiving the quant_config information
Quick fix: Pass down the quant_config info
Clean fix: Replace custom Gemma3MLP with GatedMLP which passes down this info internally. Will happen in this MR: #6371

After the fix:

$ python3 examples/llm-api/quickstart_advanced.py --model_dir ../random/hf_models/gemma-3-1b-it-fp8/ --disable_kv_cache_reuse

[0] Prompt: 'Hello, my name is', Generated text: " Alex. I'm a software engineer.\n\nI've been working on a project that's really interesting – a system for automatically generating personalized recommendations for users on a platform.\n\nIt's a bit complex, involving a lot of data, machine learning, and a lot of experimentation.  We're"
[1] Prompt: 'The capital of France is', Generated text: ' Paris.\n\nThe largest city in the world by population is Tokyo.\n\nThe most popular language in the world is English.\n\nThe highest mountain in the world is Mount Everest.\n\nThe longest river in the world is the Amazon River.\n\nThe smallest country in the world is Vatican City.\n\nThe most expensive city'
[2] Prompt: 'The future of AI is', Generated text: " a topic of much debate, but one thing is clear: it will profoundly impact our lives. From healthcare to transportation, AI is already making inroads, and its influence will only continue to grow.\n\nHere's a breakdown of key areas where AI is making a difference:\n\n*   **Healthcare:** AI is being

Test Coverage

$ pytest tests/integration/defs/accuracy/test_llm_api_pytorch.py::TestGemma3_1BInstruct::test_fp8_prequantized -s -v

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.

Summary by CodeRabbit

  • New Features

    • Added support for FP8 quantization variants for the "google/gemma-3-1b-it" and "google/gemma-3-27b-it" models, including updated accuracy references for CNN/DailyMail, GSM8K, and MMLU benchmarks.
    • Introduced FP8 quantization tests for these models to validate performance and accuracy.
  • Bug Fixes

    • Improved weight loading for language models with enhanced weight mapping integration.
  • Refactor

    • Updated model configuration handling for better support of quantization and activation settings.

@brb-nv brb-nv self-assigned this Jul 31, 2025
@brb-nv brb-nv requested a review from a team as a code owner July 31, 2025 02:23
@brb-nv brb-nv requested review from mikeiovine and suyoggupta July 31, 2025 02:23
@coderabbitai
Copy link
Contributor

coderabbitai bot commented Jul 31, 2025

Caution

Review failed

The head commit changed during the review from 58eed1c to 2eeb144.

Walkthrough

The updates introduce FP8 quantization support for Gemma 3 models in both code and test infrastructure. Model construction now leverages higher-level configuration objects and quantization configs. Weight mapping is integrated for the VLM variant. Accuracy reference YAMLs and integration tests are extended to include FP8 quantized model variants.

Changes

Cohort / File(s) Change Summary
Gemma3 ModelConfig and Quantization Integration
tensorrt_llm/_torch/models/modeling_gemma3.py
Refactored Gemma3MLP and Gemma3DecoderLayer to accept a ModelConfig wrapper, extract quantization configs, and update linear layer initialization for quantization support.
Gemma3VLM Weight Mapping
tensorrt_llm/_torch/models/modeling_gemma3vl.py
Integrated Gemma3HfWeightMapper for language model weights in Gemma3VLM, updated constructor and weight loading to use the mapper, and set architecture attribute in config.
Accuracy Reference Data: CNN/DailyMail
tests/integration/defs/accuracy/references/cnn_dailymail.yaml
Added FP8 quantized accuracy entries for google/gemma-3-1b-it and google/gemma-3-27b-it models.
Accuracy Reference Data: GSM8K
tests/integration/defs/accuracy/references/gsm8k.yaml
Appended FP8 quantized accuracy entries for google/gemma-3-1b-it and google/gemma-3-27b-it models.
Accuracy Reference Data: MMLU
tests/integration/defs/accuracy/references/mmlu.yaml
Added new entries for google/gemma-3-1b-it and FP8 quantized variant for google/gemma-3-27b-it in MMLU accuracy references.
Integration Tests for FP8 Quantization
tests/integration/defs/accuracy/test_llm_api_pytorch.py
Introduced test_fp8 methods for TestGemma3_27BInstruct and TestGemma3_1BInstruct to test FP8 quantized models and updated test_auto_dtype to include MMLU evaluation.

Sequence Diagram(s)

sequenceDiagram
    participant TestRunner
    participant Gemma3_1BInstruct
    participant Gemma3_27BInstruct
    participant ModelLoader
    participant Evaluator

    TestRunner->>Gemma3_1BInstruct: test_fp8()
    Gemma3_1BInstruct->>ModelLoader: Load FP8 quantized model
    ModelLoader-->>Gemma3_1BInstruct: Model instance
    Gemma3_1BInstruct->>Evaluator: Evaluate CnnDailymail, MMLU

    TestRunner->>Gemma3_27BInstruct: test_fp8()
    Gemma3_27BInstruct->>ModelLoader: Load FP8 quantized model
    ModelLoader-->>Gemma3_27BInstruct: Model instance
    Gemma3_27BInstruct->>Evaluator: Evaluate CnnDailymail, MMLU, GSM8K
Loading

Estimated code review effort

🎯 3 (Moderate) | ⏱️ ~15–25 minutes

Suggested reviewers

  • liji-nv
  • yilin-void
  • amukkara
  • hlu1

Poem

In fields of code where quant bits play,
The rabbits hop and models sway.
FP8 arrives—so sleek, so bright,
Accuracy tracked through day and night.
New configs bloom, new tests appear,
Gemma hops ahead—let’s all cheer!
🐇✨

✨ 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.
    • Explain this complex logic.
    • 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. Examples:
    • @coderabbitai explain this code block.
    • @coderabbitai modularize this function.
  • 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 src/utils.ts and explain its main purpose.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Support

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

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai generate docstrings to generate docstrings for this PR.
  • @coderabbitai generate sequence diagram to generate a sequence diagram of the changes in this PR.
  • @coderabbitai generate unit tests to generate unit tests for this PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

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 anywhere in the PR title to generate the title automatically.

Documentation and Community

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

@brb-nv brb-nv changed the title fix: Gibberish output with FP8 checkpoint fix: Fix gibberish output with FP8 checkpoint Jul 31, 2025
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: 2

📜 Review details

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

📥 Commits

Reviewing files that changed from the base of the PR and between 17e0d0f and d31e12d.

📒 Files selected for processing (6)
  • tensorrt_llm/_torch/models/modeling_gemma3.py (2 hunks)
  • tensorrt_llm/_torch/models/modeling_gemma3vl.py (3 hunks)
  • tests/integration/defs/accuracy/references/cnn_dailymail.yaml (1 hunks)
  • tests/integration/defs/accuracy/references/gsm8k.yaml (1 hunks)
  • tests/integration/defs/accuracy/references/mmlu.yaml (1 hunks)
  • tests/integration/defs/accuracy/test_llm_api_pytorch.py (3 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.
Python filenames should use snake_case (e.g., some_file.py).
Python classes should use PascalCase (e.g., class SomeClass).
Python functions and methods should use snake_case (e.g., def my_awesome_function():).
Python local variables should use snake_case. Prefix k for variable names that start with a number (e.g., k_99th_percentile).
Python global variables should use upper snake_case and 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 interfaces that may be used outside a file, prefer docstrings over comments in Python.
Comments in Python 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.
Attributes and variables in Python can be documented inline; attribute docstrings will be rendered under the docstring for the class.
Avoid using reflection in Python when functionality can be easily achieved without reflection.
When using try-except blocks in Python, limit the except to the smallest set of errors possible.
When using try-except blocks to handle multiple possible variable types in Python, keep the body of the try as small as possible, using the else block to implement the logic.

Files:

  • tensorrt_llm/_torch/models/modeling_gemma3.py
  • tensorrt_llm/_torch/models/modeling_gemma3vl.py
  • tests/integration/defs/accuracy/test_llm_api_pytorch.py
**/*.{cpp,h,cu,py}

📄 CodeRabbit Inference Engine (CODING_GUIDELINES.md)

All TensorRT-LLM Open Source Software code should contain an NVIDIA copyright header that includes the current year. This includes .cpp, .h, .cu, .py, and any other source files which are compiled or interpreted.

Files:

  • tensorrt_llm/_torch/models/modeling_gemma3.py
  • tensorrt_llm/_torch/models/modeling_gemma3vl.py
  • tests/integration/defs/accuracy/test_llm_api_pytorch.py
🧠 Learnings (1)
tests/integration/defs/accuracy/test_llm_api_pytorch.py (1)

Learnt from: moraxu
PR: #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.

🧬 Code Graph Analysis (1)
tensorrt_llm/_torch/models/modeling_gemma3vl.py (7)
tensorrt_llm/_torch/models/checkpoints/hf/gemma3_weight_mapper.py (1)
  • Gemma3HfWeightMapper (9-34)
tensorrt_llm/_torch/models/modeling_vila.py (2)
  • config (250-251)
  • load_weights (1196-1201)
tensorrt_llm/_torch/models/modeling_gemma3.py (2)
  • Gemma3ForCausalLM (317-493)
  • load_weights (492-493)
tensorrt_llm/_torch/models/checkpoints/base_weight_mapper.py (1)
  • init_model_and_config (19-36)
tensorrt_llm/_torch/models/modeling_siglip.py (1)
  • load_weights (117-123)
tensorrt_llm/_torch/models/modeling_llava_next.py (1)
  • load_weights (251-254)
tensorrt_llm/_torch/models/modeling_hyperclovax.py (1)
  • load_weights (987-999)
🪛 Ruff (0.12.2)
tests/integration/defs/accuracy/test_llm_api_pytorch.py

544-544: Line too long (127 > 120)

(E501)


586-586: Line too long (127 > 120)

(E501)


592-592: Line too long (122 > 120)

(E501)

🔇 Additional comments (16)
tests/integration/defs/accuracy/references/cnn_dailymail.yaml (2)

3-5: LGTM! FP8 quantization entry follows established pattern.

The new FP8 quantization configuration for google/gemma-3-1b-it correctly maintains the same accuracy as the baseline, indicating proper validation of the quantized model.


8-10: LGTM! FP8 quantization entry follows established pattern.

The new FP8 quantization configuration for google/gemma-3-27b-it correctly maintains the same accuracy as the baseline, demonstrating consistent quantization quality.

tests/integration/defs/accuracy/references/mmlu.yaml (2)

100-104: LGTM! New model entry with FP8 quantization variant added correctly.

The entry for google/gemma-3-1b-it includes both baseline (39.0) and FP8 quantized variants with preserved accuracy, following the established file structure.


107-109: LGTM! FP8 quantization entry maintains accuracy consistency.

The additional FP8 quantization configuration for google/gemma-3-27b-it preserves the baseline accuracy (77.80), demonstrating effective quantization implementation.

tests/integration/defs/accuracy/references/gsm8k.yaml (2)

116-118: LGTM! FP8 quantization entry preserves baseline accuracy.

The FP8 quantization configuration for google/gemma-3-1b-it maintains the accuracy of 25.52, consistent with other reference files.


121-123: LGTM! FP8 quantization entry preserves baseline accuracy.

The FP8 quantization configuration for google/gemma-3-27b-it maintains the high accuracy of 91.66, demonstrating effective quantization for this larger model.

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

582-583: LGTM! MMLU task evaluation added for comprehensive testing.

The addition of MMLU task evaluation to the test_auto_dtype method ensures consistency with the new FP8 test method and provides more comprehensive model validation.

tensorrt_llm/_torch/models/modeling_gemma3vl.py (4)

9-10: LGTM - Weight mapper import added correctly.

The import of Gemma3HfWeightMapper is properly added to support FP8 quantization weight loading.


109-110: Weight mapper initialization follows correct pattern.

The weight mapper instantiation and initialization with the language model and config follows the expected pattern seen in other models.


151-151: Weight mapper properly passed to load_weights.

The updated load_weights call correctly passes the weight mapper to enable FP8 quantization support for the language model component.


107-107: Architectures attribute propagation verified

The architectures field in modeling_gemma3vl.py is being set from config.architectures just as in other VLM and LLM model implementations (e.g., Mistral, Phi4, Qwen2VL). The weight mapper logic in base_checkpoint_loader.py and model‐selection utilities in modeling_utils.py all rely on this pattern and will correctly pick up the first architecture entry for mapping.

No changes required.

tensorrt_llm/_torch/models/modeling_gemma3.py (5)

161-161: Correctly updated constructor to accept ModelConfig wrapper.

The constructor signature change from Gemma3TextConfig to ModelConfig[Gemma3TextConfig] enables access to quantization configuration, which is essential for FP8 support.


163-163: Config attribute properly updated to reference pretrained config.

The config attribute now correctly references model_config.pretrained_config to maintain backward compatibility while enabling access to the ModelConfig wrapper.


171-171: Essential fix: quant_config properly passed to Linear layers.

Adding quant_config=model_config.get_quant_config() to all Linear layers (gate_proj, up_proj, down_proj) is the key fix that resolves the gibberish output issue with FP8 checkpoints. This ensures the quantization configuration is properly propagated to the linear operations.

Also applies to: 176-176, 181-181


182-182: Activation function access correctly updated.

The activation function access is properly updated to use self.config.hidden_activation following the config attribute change.


208-208: MLP instantiation correctly updated to pass ModelConfig.

The MLP instantiation in Gemma3DecoderLayer is properly updated to pass the full model_config as a keyword argument, enabling the quantization configuration to flow through to the linear layers.

@brb-nv brb-nv force-pushed the user/brb/fix-gemma3-fp8 branch 2 times, most recently from 58eed1c to 972b2d6 Compare July 31, 2025 02:43
@brb-nv brb-nv requested review from 2ez4bz, Wanli-Jiang and tijyojwad and removed request for mikeiovine and suyoggupta July 31, 2025 02:45
@brb-nv brb-nv changed the title fix: Fix gibberish output with FP8 checkpoint fix: Fix gibberish output with FP8 Gemma3 1B checkpoint Jul 31, 2025
@brb-nv brb-nv force-pushed the user/brb/fix-gemma3-fp8 branch 2 times, most recently from 5fd27f3 to 1cec903 Compare July 31, 2025 05:37
@brb-nv
Copy link
Collaborator Author

brb-nv commented Jul 31, 2025

/bot run

@tensorrt-cicd
Copy link
Collaborator

PR_Github #13615 [ run ] triggered by Bot

@tensorrt-cicd
Copy link
Collaborator

PR_Github #13615 [ run ] completed with state SUCCESS
/LLM/main/L0_MergeRequest_PR pipeline #10212 completed with status: 'FAILURE'

@brb-nv brb-nv force-pushed the user/brb/fix-gemma3-fp8 branch from 1cec903 to 514741c Compare July 31, 2025 14:11
@brb-nv
Copy link
Collaborator Author

brb-nv commented Jul 31, 2025

/bot run

@tensorrt-cicd
Copy link
Collaborator

PR_Github #13688 [ run ] triggered by Bot

@brb-nv brb-nv changed the title fix: Fix gibberish output with FP8 Gemma3 1B checkpoint fix: Fix poor generation with FP8 Gemma3 1B checkpoint Jul 31, 2025
@jhaotingc
Copy link
Collaborator

Thanks for the fix!

@tensorrt-cicd
Copy link
Collaborator

PR_Github #13688 [ run ] completed with state SUCCESS
/LLM/main/L0_MergeRequest_PR pipeline #10280 completed with status: 'SUCCESS'

@brb-nv brb-nv merged commit 2eca0d5 into NVIDIA:main Aug 1, 2025
3 checks passed
brb-nv added a commit to brb-nv/TensorRT-LLM that referenced this pull request Aug 1, 2025
symphonylyh pushed a commit to symphonylyh/TensorRT-LLM that referenced this pull request Aug 4, 2025
symphonylyh pushed a commit to symphonylyh/TensorRT-LLM that referenced this pull request Aug 4, 2025
fix: Fix poor generation with FP8 Gemma3 1B checkpoint (NVIDIA#6499)

Signed-off-by: Balaram Buddharaju <[email protected]>

[None][fix] Serialize the window_size in the kv event (NVIDIA#6526)

Signed-off-by: richardhuo-nv <[email protected]>
symphonylyh pushed a commit to symphonylyh/TensorRT-LLM that referenced this pull request Aug 5, 2025
fix: Fix poor generation with FP8 Gemma3 1B checkpoint (NVIDIA#6499)

Signed-off-by: Balaram Buddharaju <[email protected]>

[None][fix] Serialize the window_size in the kv event (NVIDIA#6526)

Signed-off-by: richardhuo-nv <[email protected]>

[None][feat] Multi-block mode for Hopper spec dec XQA kernel (NVIDIA#4416)

Signed-off-by: Jhao-Ting Chen <[email protected]>
symphonylyh pushed a commit to symphonylyh/TensorRT-LLM that referenced this pull request Aug 5, 2025
fix: Fix poor generation with FP8 Gemma3 1B checkpoint (NVIDIA#6499)

Signed-off-by: Balaram Buddharaju <[email protected]>

[None][fix] Serialize the window_size in the kv event (NVIDIA#6526)

Signed-off-by: richardhuo-nv <[email protected]>

[None][feat] Multi-block mode for Hopper spec dec XQA kernel (NVIDIA#4416)

Signed-off-by: Jhao-Ting Chen <[email protected]>

[None][feat] Add support for fused gate_up_proj scales for FP8 blockwise (NVIDIA#6496)

Signed-off-by: Aurelien Chartier <[email protected]>
lancelly pushed a commit to lancelly/TensorRT-LLM that referenced this pull request Aug 6, 2025
jain-ria pushed a commit to jain-ria/TensorRT-LLM that referenced this pull request Aug 7, 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.

5 participants