Skip to content

[None][feat] EXAONE-4.5 Support - #12873

Merged
yechank-nvidia merged 22 commits into
NVIDIA:mainfrom
yechank-nvidia:exaone_4_5
May 21, 2026
Merged

[None][feat] EXAONE-4.5 Support#12873
yechank-nvidia merged 22 commits into
NVIDIA:mainfrom
yechank-nvidia:exaone_4_5

Conversation

@yechank-nvidia

@yechank-nvidia yechank-nvidia commented Apr 9, 2026

Copy link
Copy Markdown
Collaborator

This PR is adding Day-0 support of LG AI's new VLM model, EXAONE-4.5.

This PR includes Text + Multimodal support.

ISL1000 OSL1000 IMG(512,512) BF16 H200 CONC C8 C16 C32 C64 C128
    Output Token Throughput Per User (tokens/sec/user) 130.85 116.83 96.95 82.09 62.76
    Output Token Throughput (tokens/sec) 988.6 1739.74 2838.79 4560.93 6427.07
ISL1000 OSL1000 IMG(512,512) BF16 B200 CONC C8 C16 C32 C64 C128
    Output Token Throughput Per User (tokens/sec/user) 194.82 176.8 148.64 123.08 89.24
    Output Token Throughput (tokens/sec) 1451.54 2580.11 4211.01 6443.06 8644.52

Prerequisite

pip install git+https://github.com/nuxlear/transformers.git@add-exaone4_5

Sample command

# Server run
trtllm-serve LGAI-EXAONE/EXAONE-4.5-33B --tp_size 2 --port 8000 --reasoning_parser qwen3

# Quickstart
python3 examples/llm-api/quickstart_multimodal.py --model_dir LGAI-EXAONE/EXAONE-4.5-33B

@codderabbit summary

@coderabbitai

coderabbitai Bot commented Apr 9, 2026

Copy link
Copy Markdown
Contributor
📝 Walkthrough

Walkthrough

The PR adds EXAONE-4.5 multimodal VLM support with new model implementations and weight mappers. Vision models are refactored to derive dtype/device directly from tensors instead of transformers utilities. Qwen vision models undergo significant RoPE computation and positional embedding pipeline updates. Model loader APIs are updated for kosmos-2, and test infrastructure gains skip mechanisms for conditional test execution.

Changes

Cohort / File(s) Summary
EXAONE-4.5 Model Support
examples/models/core/exaone/README.md, tensorrt_llm/_torch/models/__init__.py, tensorrt_llm/_torch/models/modeling_exaone4_5.py, tensorrt_llm/_torch/models/checkpoints/hf/exaone4_5_weight_mapper.py, tests/unittest/_torch/modeling/test_modeling_exaone4_5.py
New multimodal VLM implementation with config, input processor, vision model, weight mapper, and comprehensive test coverage. README updated with EXAONE-4.5 documentation and support matrix.
Vision Model dtype/device Refactoring
tensorrt_llm/_torch/models/modeling_clip.py, tensorrt_llm/_torch/models/modeling_siglip.py, tensorrt_llm/_torch/visual_gen/models/wan/transformer_wan.py
Replaced dependency on transformers.modeling_utils helpers with direct tensor access from embedding weights, adding explicit return type annotations.
Qwen Vision Model RoPE & Attention Updates
tensorrt_llm/_torch/models/modeling_qwen2vl.py
Major refactor: added vocab-size helper, replaced fixed Q/K/V splitting with asymmetric GQA support, introduced FlashInfer RoPE fast path, refactored vision attention to use position_ids/embeddings parameters, and updated positional rope computation with windowed caching.
Qwen3VL Positional Embedding Pipeline
tensorrt_llm/_torch/models/modeling_qwen3vl.py
Replaced HF vision rotary embedding with TensorRT-LLM RotaryEmbedding, added native bilinear interpolation helper, introduced device/dtype properties, and refactored rope computation with cached position ID generation.
Model Loader API Updates
tensorrt_llm/models/gpt/convert.py, tensorrt_llm/tools/multimodal_builder.py
Updated kosmos-2 loading to use AutoModelForImageTextToText instead of deprecated AutoModelForVision2Seq.
Server & Utility Model-Type Resolution
tensorrt_llm/serve/chat_utils.py, tensorrt_llm/serve/openai_server.py
Changed model-type source from instance attribute to class type method (type(model_config).model_type) for multimodal registry and placeholder decisions.
Configuration & Dependency Updates
requirements.txt, tensorrt_llm/_torch/models/modeling_exaone_moe.py, tensorrt_llm/_torch/models/modeling_llama.py
Updated transformers from 4.57.3 to 5.3.0, added exist_ok=True to ExaoneMoE config registration, and updated load_sharded_checkpoint import path.
Test Framework Enhancements
tests/unittest/_torch/modeling/test_modeling_multimodal.py
Added skip_test and skip_test_reason properties to base multimodal test class enabling conditional test skipping.

Sequence Diagram(s)

sequenceDiagram
    participant Client as Client
    participant InputProc as Input Processor
    participant VisionEnc as Vision Encoder
    participant TextEmbed as Text Embedding
    participant LLM as Language Model
    participant Output

    Client->>InputProc: Text + Images
    InputProc->>InputProc: Preprocess text & images
    InputProc->>InputProc: Fuse multimodal placeholders
    InputProc->>VisionEnc: pixel_values + grid_thw
    VisionEnc->>VisionEnc: Compute windowed RoPE (cos, sin)
    VisionEnc->>VisionEnc: Apply vision attention with position_ids
    VisionEnc-->>InputProc: Vision embeddings
    InputProc->>TextEmbed: Fused input_ids + multimodal_data
    TextEmbed->>TextEmbed: Embed text tokens
    TextEmbed->>LLM: Fused embeddings (text + vision)
    LLM->>LLM: Causal language modeling
    LLM-->>Output: Logits / Tokens
Loading

Estimated code review effort

🎯 4 (Complex) | ⏱️ ~60 minutes

🚥 Pre-merge checks | ✅ 1 | ❌ 2

❌ Failed checks (1 warning, 1 inconclusive)

Check name Status Explanation Resolution
Docstring Coverage ⚠️ Warning Docstring coverage is 19.70% which is insufficient. The required threshold is 80.00%. Write docstrings for the functions missing them to satisfy the coverage threshold.
Description check ❓ Inconclusive PR description is brief and lacks structured sections from the template. Provide a structured description following the template with sections: Description (explaining what and why), Test Coverage (listing relevant tests), and PR Checklist confirmation.
✅ Passed checks (1 passed)
Check name Status Explanation
Title check ✅ Passed The title clearly identifies the main change: adding support for EXAONE-4.5, a new VLM model. It follows the required format with ticket ID, type, and concise summary.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests

Tip

💬 Introducing Slack Agent: The best way for teams to turn conversations into code.

Slack Agent is built on CodeRabbit's deep understanding of your code, so your team can collaborate across the entire SDLC without losing context.

  • Generate code and open pull requests
  • Plan features and break down work
  • Investigate incidents and troubleshoot customer tickets together
  • Automate recurring tasks and respond to alerts with triggers
  • Summarize progress and report instantly

Built for teams:

  • Shared memory across your entire org—no repeating context
  • Per-thread sandboxes to safely plan and execute work
  • Governance built-in—scoped access, auditability, and budget controls

One agent for your entire SDLC. Right inside Slack.

👉 Get started


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

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

🧹 Nitpick comments (2)
tensorrt_llm/_torch/models/checkpoints/hf/exaone4_5_weight_mapper.py (1)

19-19: Missing return type annotation.

The preprocess_weights method is missing a return type hint. Per coding guidelines, functions should be annotated with type hints.

✏️ Proposed fix
-    def preprocess_weights(self, weights: dict):
+    def preprocess_weights(self, weights: dict) -> dict:
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@tensorrt_llm/_torch/models/checkpoints/hf/exaone4_5_weight_mapper.py` at line
19, The method preprocess_weights(self, weights: dict) is missing a return type
annotation; update its signature to include an explicit return type such as ->
Dict[str, Any] (or Mapping[str, Any] if preferred) and ensure you import the
corresponding typing symbols (Dict and Any or Mapping) at the top of the module
so the signature reads e.g. def preprocess_weights(self, weights: Dict[str,
Any]) -> Dict[str, Any]: while keeping the existing behavior in the
preprocess_weights implementation.
tests/unittest/_torch/modeling/test_modeling_exaone4_5.py (1)

183-186: Hardcoded local path for test weights.

The test config contains a hardcoded developer-specific path (/code/yechan-models/exaone45_beta_2026-03-19_bf16). While the skip_test property handles missing paths gracefully, consider using an environment variable (e.g., EXAONE_4_5_MODEL_PATH) for configurability:

♻️ Suggested improvement
+import os
+
+_EXAONE_4_5_DEFAULT_PATH = "/code/yechan-models/exaone45_beta_2026-03-19_bf16"
+
 EXAONE_4_5_TEST_CONFIG = {
     # ... other config ...
-    "_name_or_path": str(
-        os.path.join("/code/yechan-models", "exaone45_beta_2026-03-19_bf16")
-    ),  # str(os.path.join(llm_models_root(), "Qwen2.5-VL-7B-Instruct"))
+    "_name_or_path": os.environ.get("EXAONE_4_5_MODEL_PATH", _EXAONE_4_5_DEFAULT_PATH),
 }
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@tests/unittest/_torch/modeling/test_modeling_exaone4_5.py` around lines 183 -
186, Replace the hardcoded developer path in the test config for "_name_or_path"
with an environment-configurable value: read
os.environ.get("EXAONE_4_5_MODEL_PATH") and fall back to the existing
os.path.join("/code/yechan-models", "exaone45_beta_2026-03-19_bf16") if the env
var is not set; keep the str(...) cast and preserve the existing skip_test
behavior that already handles missing paths. Update the assignment where
"_name_or_path" is set in
tests/unittest/_torch/modeling/test_modeling_exaone4_5.py to use this env var
fallback.
🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.

Inline comments:
In `@examples/models/core/exaone/README.md`:
- Around line 102-106: Replace the unresolved TODOs in the EXAONE-4.5 README:
set the actual HuggingFace repo name in the git clone command (replace `<TODO:
FILL>` in the git clone URL that follows HF_MODEL_DIR) and update the example's
expected output section (the lines labeled `TODO: FILL` around the expected
output) with the real output produced by the model so the README contains the
correct repository path and sample result.

In `@tensorrt_llm/_torch/models/modeling_exaone4_5.py`:
- Around line 235-237: Replace the runtime type check in load_weights to avoid
using assert: explicitly verify that weight_mapper is an instance of
Exaone4_5HfWeightMapper and if not raise a TypeError with a clear message (e.g.,
indicating expected Exaone4_5HfWeightMapper but got type(weight_mapper)); then
proceed to call weight_mapper.preprocess_weights(weights). Ensure you reference
the load_weights method and the Exaone4_5HfWeightMapper/BaseWeightMapper types
when making the change.
- Around line 175-189: Exaone4_5_VLModel is processing all multimodal_params
including text-only entries; call the parent filter to only keep requests with
actual multimodal data before calling the encoder. Modify the block handling
multimodal_params to first call
self._get_requests_with_mm_data(multimodal_params) (or assign its return to a
local filtered list) and use that filtered list when deciding to call
get_multimodal_embeddings, then pass the filtered mm_embeds into
find_input_mm_embeds; ensure you still raise NotImplementedError for
disaggregated mode in the same place.

In `@tensorrt_llm/_torch/models/modeling_qwen2vl.py`:
- Around line 914-916: The prepare_attn_metadata method in modeling_qwen2vl.py
shadows the incoming batch_size parameter by reassigning it to len(seq_lens);
remove that reassignment so the passed batch_size is used, mirroring the fix
from modeling_qwen3vl.py; then ensure any callers that currently rely on the old
behavior (e.g., the call sites referenced around lines 976-980) are updated to
pass the correct batch_size value (or compute len(seq_lens) before calling) so
prepare_attn_metadata(batch_size: int, seq_lens: List[int], attn_metadata:
AttentionMetadata) uses its batch_size argument as intended.

In `@tensorrt_llm/_torch/models/modeling_qwen3vl.py`:
- Around line 768-771: The prepare_attn_metadata function currently shadows its
batch_size parameter with batch_size = len(seq_lens); remove the parameter from
prepare_attn_metadata's signature and update every call site that passes
batch_size (e.g., where prepare_attn_metadata(...) is invoked) to stop supplying
that argument, or alternatively keep the parameter and delete the reassignment
so the passed batch_size is used; modify the function signature and all
references consistently (function name: prepare_attn_metadata, local variable:
seq_lens) so there is no shadowing or dead parameter.

In `@tensorrt_llm/serve/chat_utils.py`:
- Around line 289-290: The line initializing MultimodalDataTracker is
misformatted causing pre-commit/yapf failures; reformat the statement that
constructs MultimodalDataTracker(type(model_config).model_type,
multimodal_server_config) to satisfy the project's formatter (wrap arguments
across lines or adjust spacing consistent with other calls), then run the
project's pre-commit hooks or `yapf` to enforce line wrapping for this and any
adjacent function calls; ensure you update the call sites referencing
MultimodalDataTracker, model_config, and multimodal_server_config so they
conform to the repository's line-length and formatting rules.
- Around line 305-307: Remove the dead local assignment "model_type =
model_config.model_type" since subsequent calls (e.g.,
MULTIMODAL_PLACEHOLDER_REGISTRY.get_content_format(type(model_config).model_type))
use type(model_config).model_type instead; delete the unused "model_type"
variable or alternatively replace other uses to reference the local variable
consistently, ensuring references around model_config and
MULTIMODAL_PLACEHOLDER_REGISTRY.get_content_format remain correct.

---

Nitpick comments:
In `@tensorrt_llm/_torch/models/checkpoints/hf/exaone4_5_weight_mapper.py`:
- Line 19: The method preprocess_weights(self, weights: dict) is missing a
return type annotation; update its signature to include an explicit return type
such as -> Dict[str, Any] (or Mapping[str, Any] if preferred) and ensure you
import the corresponding typing symbols (Dict and Any or Mapping) at the top of
the module so the signature reads e.g. def preprocess_weights(self, weights:
Dict[str, Any]) -> Dict[str, Any]: while keeping the existing behavior in the
preprocess_weights implementation.

In `@tests/unittest/_torch/modeling/test_modeling_exaone4_5.py`:
- Around line 183-186: Replace the hardcoded developer path in the test config
for "_name_or_path" with an environment-configurable value: read
os.environ.get("EXAONE_4_5_MODEL_PATH") and fall back to the existing
os.path.join("/code/yechan-models", "exaone45_beta_2026-03-19_bf16") if the env
var is not set; keep the str(...) cast and preserve the existing skip_test
behavior that already handles missing paths. Update the assignment where
"_name_or_path" is set in
tests/unittest/_torch/modeling/test_modeling_exaone4_5.py to use this env var
fallback.
🪄 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: Pro

Run ID: a4fc1689-50d7-46db-9958-52340c2e4a19

📥 Commits

Reviewing files that changed from the base of the PR and between b4a4ce0 and d1c8f67.

📒 Files selected for processing (18)
  • examples/models/core/exaone/README.md
  • requirements.txt
  • tensorrt_llm/_torch/models/__init__.py
  • tensorrt_llm/_torch/models/checkpoints/hf/exaone4_5_weight_mapper.py
  • tensorrt_llm/_torch/models/modeling_clip.py
  • tensorrt_llm/_torch/models/modeling_exaone4_5.py
  • tensorrt_llm/_torch/models/modeling_exaone_moe.py
  • tensorrt_llm/_torch/models/modeling_llama.py
  • tensorrt_llm/_torch/models/modeling_qwen2vl.py
  • tensorrt_llm/_torch/models/modeling_qwen3vl.py
  • tensorrt_llm/_torch/models/modeling_siglip.py
  • tensorrt_llm/_torch/visual_gen/models/wan/transformer_wan.py
  • tensorrt_llm/models/gpt/convert.py
  • tensorrt_llm/serve/chat_utils.py
  • tensorrt_llm/serve/openai_server.py
  • tensorrt_llm/tools/multimodal_builder.py
  • tests/unittest/_torch/modeling/test_modeling_exaone4_5.py
  • tests/unittest/_torch/modeling/test_modeling_multimodal.py

Comment thread examples/models/core/exaone/README.md
Comment thread tensorrt_llm/_torch/models/modeling_exaone4_5.py Outdated
Comment thread tensorrt_llm/_torch/models/modeling_exaone4_5.py
Comment thread tensorrt_llm/_torch/models/modeling_qwen2vl.py
Comment thread tensorrt_llm/_torch/models/modeling_qwen3vl.py
Comment thread tensorrt_llm/serve/chat_utils.py Outdated
Comment thread tensorrt_llm/serve/chat_utils.py Outdated
@yechank-nvidia

Copy link
Copy Markdown
Collaborator Author

/bot run

@tensorrt-cicd

Copy link
Copy Markdown
Collaborator

PR_Github #42598 [ run ] triggered by Bot. Commit: d1c8f67 Link to invocation

@tensorrt-cicd

Copy link
Copy Markdown
Collaborator

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

Link to invocation

@yechank-nvidia

Copy link
Copy Markdown
Collaborator Author

/bot run

@tensorrt-cicd

Copy link
Copy Markdown
Collaborator

PR_Github #42996 [ run ] triggered by Bot. Commit: 2c1ae85 Link to invocation

@tensorrt-cicd

Copy link
Copy Markdown
Collaborator

PR_Github #42996 [ run ] completed with state SUCCESS. Commit: 2c1ae85
/LLM/main/L0_MergeRequest_PR pipeline #33648 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

Link to invocation

@yechank-nvidia
yechank-nvidia requested a review from a team as a code owner April 13, 2026 09:41
@yechank-nvidia

Copy link
Copy Markdown
Collaborator Author

/bot run

@tensorrt-cicd

Copy link
Copy Markdown
Collaborator

PR_Github #43013 [ run ] triggered by Bot. Commit: eb46c05 Link to invocation

@tensorrt-cicd

Copy link
Copy Markdown
Collaborator

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

Link to invocation

@yechank-nvidia
yechank-nvidia requested a review from a team as a code owner April 13, 2026 10:53
@yechank-nvidia

Copy link
Copy Markdown
Collaborator Author

/bot run

@tensorrt-cicd

Copy link
Copy Markdown
Collaborator

PR_Github #43026 [ run ] triggered by Bot. Commit: 97c4792 Link to invocation

Two follow-ups to the Qwen2.5-VL transformers-5.x fix:

* `Qwen3VisionModel.__init__` was hard-coding
  `self.config.max_position_embeddings = 8192`. Match Qwen2.5-VL: read
  the value from `text_config.max_position_embeddings` (falling back to
  the top-level pretrained_config) and mirror it onto vision_config.

* `Qwen3VLVisionAttention.__init__` was mutating
  `model_config.pretrained_config.max_position_embeddings` from
  `text_config.max_position_embeddings`. The parent
  `Qwen2_5_VLVisionAttention.__init__` already performs that fallback,
  so the mutation is redundant. Keep the `vision_config.torch_dtype`
  mirror — that one is still required because Qwen3-VL only carries
  dtype on `text_config`.

Signed-off-by: yechank <161688079+yechank-nvidia@users.noreply.github.com>
Addresses @venkywonka's review comment on the EXAONE 4.5 PR: the new
file under tensorrt_llm/_torch/models/checkpoints/hf/ was missing the
standard SPDX Apache-2.0 header. Adds the canonical NVIDIA header
matching the rest of the repo (2026 copyright year).

Signed-off-by: yechank <161688079+yechank-nvidia@users.noreply.github.com>
…ites

`setup_scenario` rebuilds `trtllm_model` with `disable_fuse_rope=True`
when the scenario asks for it, but does not undo the rebuild
afterwards (the parent `setup_scenario` only resets runtime_features
and attn_metadata). With the previous ordering, the rebuilt model
leaked into the chunked-prefill and kv-cache-reuse scenarios that ran
after `no_fuse_rope`, where it surfaced as a cos/sin vs. q/k seq-len
mismatch inside `MRotaryEmbedding.forward` (the rotary path expected
the fused-rope wiring rather than the explicit `apply_rotary_pos_emb`
codepath).

Move the `disable_fuse_rope=True` scenario to the tail of every
Qwen-VL test suite (Qwen2.5-VL, Qwen3-VL, Qwen3-VL-MoE) so the
rebuilt model is the last one used and never seen by another
scenario. Only one extra engine is built (for that scenario) per
file; the four upstream scenarios still share a single
fused-rope-enabled model.

Signed-off-by: yechank <161688079+yechank-nvidia@users.noreply.github.com>
@yechank-nvidia

Copy link
Copy Markdown
Collaborator Author

/bot run

@tensorrt-cicd

Copy link
Copy Markdown
Collaborator

PR_Github #49292 [ run ] triggered by Bot. Commit: 36d9309 Link to invocation

@tensorrt-cicd

Copy link
Copy Markdown
Collaborator

PR_Github #49292 [ run ] completed with state FAILURE. Commit: 36d9309
/LLM/main/L0_MergeRequest_PR pipeline #38954 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

@yechank-nvidia

Copy link
Copy Markdown
Collaborator Author

/bot run

@tensorrt-cicd

Copy link
Copy Markdown
Collaborator

PR_Github #49334 [ run ] triggered by Bot. Commit: 36d9309 Link to invocation

@tensorrt-cicd

Copy link
Copy Markdown
Collaborator

PR_Github #49334 [ run ] completed with state SUCCESS. Commit: 36d9309
/LLM/main/L0_MergeRequest_PR pipeline #38991 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

@yechank-nvidia

Copy link
Copy Markdown
Collaborator Author

/bot run

@tensorrt-cicd

Copy link
Copy Markdown
Collaborator

PR_Github #49378 [ run ] triggered by Bot. Commit: 36d9309 Link to invocation

@tensorrt-cicd

Copy link
Copy Markdown
Collaborator

PR_Github #49378 [ run ] completed with state SUCCESS. Commit: 36d9309
/LLM/main/L0_MergeRequest_PR pipeline #39031 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

@yechank-nvidia

Copy link
Copy Markdown
Collaborator Author

/bot run

@tensorrt-cicd

Copy link
Copy Markdown
Collaborator

PR_Github #49433 [ run ] triggered by Bot. Commit: 36d9309 Link to invocation

@tensorrt-cicd

Copy link
Copy Markdown
Collaborator

PR_Github #49433 [ run ] completed with state SUCCESS. Commit: 36d9309
/LLM/main/L0_MergeRequest_PR pipeline #39078 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

@yechank-nvidia

Copy link
Copy Markdown
Collaborator Author

/bot run

@tensorrt-cicd

Copy link
Copy Markdown
Collaborator

PR_Github #49536 [ run ] triggered by Bot. Commit: 36d9309 Link to invocation

@tensorrt-cicd

Copy link
Copy Markdown
Collaborator

PR_Github #49536 [ run ] completed with state SUCCESS. Commit: 36d9309
/LLM/main/L0_MergeRequest_PR pipeline #39165 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

@yechank-nvidia

Copy link
Copy Markdown
Collaborator Author

/bot run

@tensorrt-cicd

Copy link
Copy Markdown
Collaborator

PR_Github #49669 [ run ] triggered by Bot. Commit: 36d9309 Link to invocation

@yechank-nvidia
yechank-nvidia enabled auto-merge (squash) May 21, 2026 11:17
@tensorrt-cicd

Copy link
Copy Markdown
Collaborator

PR_Github #49669 [ run ] completed with state SUCCESS. Commit: 36d9309
/LLM/main/L0_MergeRequest_PR pipeline #39280 completed with status: 'SUCCESS'

CI Report

Link to invocation

@yechank-nvidia
yechank-nvidia merged commit 7279d63 into NVIDIA:main May 21, 2026
8 checks passed
xxi-nv pushed a commit to xxi-nv/TensorRT-LLM that referenced this pull request May 22, 2026
Signed-off-by: yechank <161688079+yechank-nvidia@users.noreply.github.com>
KleinBlueC pushed a commit to KleinBlueC/TensorRT-LLM that referenced this pull request May 26, 2026
Signed-off-by: yechank <161688079+yechank-nvidia@users.noreply.github.com>
bmarimuthu-nv pushed a commit to nv-auto-deploy/TensorRT-LLM that referenced this pull request May 28, 2026
Signed-off-by: yechank <161688079+yechank-nvidia@users.noreply.github.com>
tensorrt-cicd added a commit to tensorrt-cicd/TensorRT-LLM that referenced this pull request Jun 2, 2026
…served score

The MMMU reference for LGAI-EXAONE/EXAONE-4.5-33B was set to 51.22 in
PR NVIDIA#12873 but never validated by pre-merge CI -- the test was added
directly to the QA test list, so the bogus reference was never caught.
The model in fact scores ~46.5 on every GPU we run it on (H20, B200,
B300, GB200, GB300), and the bug confirms "PASSED commit: N/A": the
test has never passed since the day it was added.

Drop the reference from 51.22 to 46.5 (matches the cross-GPU empirical
mean 46.444-46.778) and remove the two waiver entries that were
suppressing both parametrize variants.

Verified locally on GB300: both full_budget (eval=46.444) and
forced_chunked_prefill variants pass against the new threshold
(42.623). Run wall time 39 min.

Signed-off-by: tensorrt-cicd <90828364+tensorrt-cicd@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Multimodal Label for issues & PRs regarding Multimodal related objects

Projects

None yet

Development

Successfully merging this pull request may close these issues.

9 participants