Skip to content

[None][feat] Add Qwen-Image-Layered baseline support - #15096

Merged
yumin066 merged 1 commit into
NVIDIA:mainfrom
yumin066:qwen-image-layered-fp8
Jul 28, 2026
Merged

[None][feat] Add Qwen-Image-Layered baseline support#15096
yumin066 merged 1 commit into
NVIDIA:mainfrom
yumin066:qwen-image-layered-fp8

Conversation

@yumin066

@yumin066 yumin066 commented Jun 8, 2026

Copy link
Copy Markdown
Collaborator

@coderabbitai summary

Description

This PR adds baseline Qwen-Image-Layered support to VisualGen.

Main changes:

  • Add and register QwenImageLayeredPipeline.
  • Add layered transformer support for 3D RoPE and additional timestep conditioning.
  • Add processor loading for the Qwen-Image-Layered checkpoint layout.
  • Add targeted unit coverage for registry detection, pipeline config parsing, layered transformer construction, and parity for the layered RoPE / timestep components.

Scope note: FP8 SageAttention, Cache-DiT integration, FP8 quantization presets, and parallelization follow-ups were intentionally split out of this PR per review feedback.

Test Coverage

python3 -m py_compile \
  tests/unittest/_torch/visual_gen/test_qwen_image_layered_registry.py \
  tests/unittest/_torch/visual_gen/test_qwen_image_layered_pipeline_config.py \
  tests/unittest/_torch/visual_gen/test_qwen_image_layered_parity.py \
  tensorrt_llm/_torch/visual_gen/models/qwen_image/pipeline_qwen_image_layered.py
pre-commit run --files $(git diff --name-only upstream/main...HEAD)

pytest was not run locally because the local Python environment does not have pytest installed.

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)

  • If PR introduces API changes, an appropriate PR label is added - either api-compatible or api-breaking. For api-breaking, include BREAKING in the PR title.

  • 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

To see a list of available CI bot commands, please comment /bot help.

@yumin066
yumin066 requested review from a team as code owners June 8, 2026 09:37
@yumin066
yumin066 requested a review from pengbowang-nv June 8, 2026 09:37
@coderabbitai

coderabbitai Bot commented Jun 8, 2026

Copy link
Copy Markdown
Contributor

Review Change Stack

📝 Walkthrough

Walkthrough

This PR introduces the Qwen-Image-Layered pipeline variant for TensorRT-LLM, enabling per-layer frame-axis positioning with 3D RoPE, TRTLLM masked attention support, and Cache-DiT acceleration. It extends the existing Qwen-Image transformer with configuration flags and adds a complete layered pipeline implementation supporting VAE encoding, scheduler-driven denoising, true CFG with optional normalization, and layered latent packing.

Changes

Qwen-Image-Layered Pipeline Implementation and Integration

Layer / File(s) Summary
Transformer Layer-Aware Features (3D RoPE and Masked Attention)
tensorrt_llm/_torch/visual_gen/models/qwen_image/transformer_qwen_image.py, tensorrt_llm/_torch/visual_gen/modules/attention.py
Introduces QwenEmbedLayer3DRope for per-layer frame-axis RoPE offsets, adds _trtllm_masked_attention path to compact valid text tokens and run joint attention on CUDA, conditions backend fallback on quant_attention_config presence, and adds apply_quant_config_exclude_modules() to apply quantization exclusion rules before weight materialization.
Cache-DiT Acceleration for Qwen Pipelines
tensorrt_llm/_torch/visual_gen/cache/cache_dit_enablers.py, tensorrt_llm/_torch/visual_gen/models/qwen_image/pipeline_qwen_image.py
Implements enable_cache_dit_for_qwen_image enabler using ForwardPattern.Pattern_1 with optional TaylorSeer calibration; adds post_load_weights() and _refresh_cache_acceleration() hooks to QwenImagePipeline to enable and refresh cache acceleration based on cache_backend config and inference steps.
QwenImageLayeredPipeline Implementation
tensorrt_llm/_torch/visual_gen/models/qwen_image/pipeline_qwen_image_layered.py
Implements complete layered pipeline with VAE image encoding (argmax latent retrieval), latent normalization, layered latent packing/unpacking via 2x2 spatial rearrangement, scheduler-driven denoising loop, optional true CFG with cfg_normalize, and auto-caption generation from Qwen2VLProcessor when prompts are empty.
Module Exports and Pipeline Registry
tensorrt_llm/_torch/visual_gen/models/__init__.py, tensorrt_llm/_torch/visual_gen/models/qwen_image/__init__.py, tensorrt_llm/_torch/visual_gen/pipeline_registry.py
Exports QwenImageLayeredPipeline and QwenEmbedLayer3DRope from qwen_image package; adds PROCESSOR component to PipelineComponent enum; extends AutoPipeline._detect_from_checkpoint() to recognize QwenImageLayered* class names and route to layered pipeline.
Attention Quantization and Fallback Tests
tests/unittest/_torch/visual_gen/test_attention_integration.py
Verifies that TRTLLM with SEPARATE_QKV falls back to VANILLA backend when quant_attention_config is absent.
Parity Tests for LayerAware Components
tests/unittest/_torch/visual_gen/test_qwen_image_layered_parity.py
Validates QwenEmbedLayer3DRope and QwenTimestepProjEmbeddings (with use_additional_t_cond=True) output parity against diffusers reference implementations on CUDA via cosine similarity and exact tensor equality.
Layered Pipeline Registration and Smoke Tests
tests/unittest/_torch/visual_gen/test_qwen_image_layered_registry.py
Comprehensive smoke tests covering registration in PIPELINE_REGISTRY, AutoPipeline checkpoint detection, processor loading from processor/ subfolder, Cache-DiT enabler dispatch, transformer config preservation (3D RoPE, additional time cond), masked attention compaction with batched masks, and forward sanity check with/without text mask.
Layered Pipeline Configuration Tests
tests/unittest/_torch/visual_gen/test_qwen_image_layered_pipeline_config.py
Tests _resolve_pipeline_config defaults and unknown-key rejection; validates that transformer config with use_layer3d_rope and use_additional_t_cond flags wires into pos_embed selection and time embedding.
Base QwenImagePipeline Cache and Registry Tests
tests/unittest/_torch/visual_gen/test_qwen_image_registry.py
Extended tests for base pipeline Cache-DiT enabler registration, post_load_weights() cache activation, cache refresh, and AutoPipeline routing for Qwen-Image variants; plus TRTLLM attention backend fallback and quantization exclude-module handling.

Estimated code review effort

🎯 4 (Complex) | ⏱️ ~60 minutes

Possibly related PRs

  • NVIDIA/TensorRT-LLM#13449: Adds foundational Qwen image support that this PR extends with layered pipeline, 3D RoPE, and TRTLLM masked attention enhancements.

Suggested labels

VisualGen

Suggested reviewers

  • QiJune
  • juney-nvidia
  • yibinl-nvidia
🚥 Pre-merge checks | ✅ 4 | ❌ 1

❌ Failed checks (1 warning)

Check name Status Explanation Resolution
Docstring Coverage ⚠️ Warning Docstring coverage is 39.29% which is insufficient. The required threshold is 80.00%. Write docstrings for the functions missing them to satisfy the coverage threshold.
✅ Passed checks (4 passed)
Check name Status Explanation
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.
Title check ✅ Passed The title follows the required ticket/type format and clearly summarizes the main Qwen-Image-Layered support change.
Description check ✅ Passed The description includes the required summary, test coverage, and checklist sections, and explains the main changes and scope well.
✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests

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

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

Actionable comments posted: 3

Caution

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

⚠️ Outside diff range comments (1)
tests/unittest/_torch/visual_gen/test_qwen_image_layered_registry.py (1)

227-274: ⚠️ Potential issue | 🟡 Minor | ⚡ Quick win

Coverage gap: add a negative test for layered latent frame-count validation.

Please add one test in tests/unittest/_torch/visual_gen/test_qwen_image_layered_registry.py that passes latent input shaped (B, C, F, H, W) with F != 1 and asserts ValueError. This closes the edge-case contract for latent-image inputs.

As per coding guidelines, tests under tests/** should explicitly call out whether coverage is sufficient, and this path needs follow-up coverage.

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@tests/unittest/_torch/visual_gen/test_qwen_image_layered_registry.py` around
lines 227 - 274, Add a new unit test that constructs the same
QwenImageTransformer2DModel (use the same model creation pattern from
test_layered_transformer_forward_sanity, referencing QwenImageTransformer2DModel
and model_config) but passes hidden_states with shape (B, C, F, H, W) where F !=
1 (e.g. F=2) and assert that calling the model raises ValueError; create a test
function name like test_layered_transformer_rejects_multi_frame_latent, set
device/dtype the same as the existing test, wrap the model call in a context
that expects ValueError, and include any needed
encoder_hidden_states/encoder_hidden_states_mask similar to the existing test
for parity.

Source: Coding guidelines

🧹 Nitpick comments (1)
tensorrt_llm/_torch/visual_gen/models/qwen_image/transformer_qwen_image.py (1)

467-467: 💤 Low value

Ruff B019: lru_cache on methods can cause memory leaks.

The @functools.lru_cache decorator on _compute_condition_freqs retains strong references to self, preventing garbage collection of the entire module instance. This is inherited from the parent class pattern (line 381 _compute_video_freqs also uses lru_cache), so it's consistent with the existing design. However, for long-running processes, each QwenEmbedLayer3DRope instance will remain in memory as long as any cached result exists.

If you expect many pipeline instances to be created/destroyed, consider using functools.cache (Python 3.9+) or a WeakMethod-based cache pattern.

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@tensorrt_llm/_torch/visual_gen/models/qwen_image/transformer_qwen_image.py`
at line 467, The method decorator `@functools.lru_cache` on
_compute_condition_freqs holds strong references to self and can leak
QwenEmbedLayer3DRope instances; replace the decorator with a non-leaking
alternative (either use functools.cache if you require a global unbounded cache
and run on Python 3.9+, or implement a WeakMethod-based cache keyed by weakrefs
to self) and mirror the same change for the sibling method _compute_video_freqs;
ensure the cache is defined at function-level (or via a
WeakKeyDictionary/weakref.WeakMethod helper) so instances can be garbage
collected and add a simple compatibility guard if functools.cache is used only
when available.

Source: Linters/SAST tools

🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Inline comments:
In
`@tensorrt_llm/_torch/visual_gen/models/qwen_image/pipeline_qwen_image_layered.py`:
- Around line 530-537: In the is_latent_image branch in
pipeline_qwen_image_layered (where image is converted to dtype/device and
calculated_width is set using self.vae_scale_factor) add an explicit validation
that rejects multi-frame latent inputs: detect 5D latent tensors (B, C, F, H, W)
or when image.shape[-3] (the frames dimension) exists and ensure F == 1; if F !=
1 raise a clear ValueError like "Layered latent inputs must have exactly one
frame (F==1) for packing/layers=1, got F={F}." Apply the same check to the other
latent-image handling block earlier in this file (the other branch that
currently checks spatial evenness) so both latent paths fail fast with a clear
error instead of triggering an internal reshape failure.
- Around line 438-441: The trimming code that builds generated_ids_trimmed
assumes model_inputs.input_ids and generated_ids have the same batch length;
change the zip call to use zip(model_inputs.input_ids, generated_ids,
strict=True) so mismatched batch sizes raise immediately instead of silently
truncating; update the expression that computes generated_ids_trimmed
(referenced by the variable name generated_ids_trimmed and the operands
model_inputs.input_ids and generated_ids) to use strict zip and run tests to
ensure any mismatch surfaces as an exception.

In `@tests/unittest/_torch/visual_gen/test_qwen_image_registry.py`:
- Around line 21-37: The import block fails ruff-format because names/group
order isn't lint-sorted; reorder the import statements so imported names are
alphabetically sorted inside each from ... import (...) group and the import
groups themselves follow the linter's expected grouping; specifically sort the
first block containing AttentionConfig, DiffusionModelConfig,
create_attention_metadata_state (alphabetize those names), reorder
PIPELINE_REGISTRY and AutoPipeline so AutoPipeline comes first, and ensure the
remaining single-name imports (QwenImagePipeline, QwenImageTransformer2DModel,
QuantConfig, QuantAlgo, QuantAttentionConfig) are placed in the correct group
order per ruff/ruff-format, then rerun pre-commit.

---

Outside diff comments:
In `@tests/unittest/_torch/visual_gen/test_qwen_image_layered_registry.py`:
- Around line 227-274: Add a new unit test that constructs the same
QwenImageTransformer2DModel (use the same model creation pattern from
test_layered_transformer_forward_sanity, referencing QwenImageTransformer2DModel
and model_config) but passes hidden_states with shape (B, C, F, H, W) where F !=
1 (e.g. F=2) and assert that calling the model raises ValueError; create a test
function name like test_layered_transformer_rejects_multi_frame_latent, set
device/dtype the same as the existing test, wrap the model call in a context
that expects ValueError, and include any needed
encoder_hidden_states/encoder_hidden_states_mask similar to the existing test
for parity.

---

Nitpick comments:
In `@tensorrt_llm/_torch/visual_gen/models/qwen_image/transformer_qwen_image.py`:
- Line 467: The method decorator `@functools.lru_cache` on
_compute_condition_freqs holds strong references to self and can leak
QwenEmbedLayer3DRope instances; replace the decorator with a non-leaking
alternative (either use functools.cache if you require a global unbounded cache
and run on Python 3.9+, or implement a WeakMethod-based cache keyed by weakrefs
to self) and mirror the same change for the sibling method _compute_video_freqs;
ensure the cache is defined at function-level (or via a
WeakKeyDictionary/weakref.WeakMethod helper) so instances can be garbage
collected and add a simple compatibility guard if functools.cache is used only
when available.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Enterprise

Run ID: 61e476dc-3b53-4b6b-ab47-641ec635bd2d

📥 Commits

Reviewing files that changed from the base of the PR and between 2febb37 and 29a7531.

📒 Files selected for processing (13)
  • tensorrt_llm/_torch/visual_gen/cache/cache_dit_enablers.py
  • tensorrt_llm/_torch/visual_gen/models/__init__.py
  • tensorrt_llm/_torch/visual_gen/models/qwen_image/__init__.py
  • tensorrt_llm/_torch/visual_gen/models/qwen_image/pipeline_qwen_image.py
  • tensorrt_llm/_torch/visual_gen/models/qwen_image/pipeline_qwen_image_layered.py
  • tensorrt_llm/_torch/visual_gen/models/qwen_image/transformer_qwen_image.py
  • tensorrt_llm/_torch/visual_gen/modules/attention.py
  • tensorrt_llm/_torch/visual_gen/pipeline_registry.py
  • tests/unittest/_torch/visual_gen/test_attention_integration.py
  • tests/unittest/_torch/visual_gen/test_qwen_image_layered_parity.py
  • tests/unittest/_torch/visual_gen/test_qwen_image_layered_pipeline_config.py
  • tests/unittest/_torch/visual_gen/test_qwen_image_layered_registry.py
  • tests/unittest/_torch/visual_gen/test_qwen_image_registry.py

Comment thread tests/unittest/_torch/visual_gen/test_qwen_image_registry.py Outdated
@yumin066 yumin066 changed the title [None][feat] Add Qwen-Image-Layered FP8 and Cache-DiT support [None][feat] Add Qwen-Image-Layered FP8 support Jun 9, 2026
@yumin066
yumin066 force-pushed the qwen-image-layered-fp8 branch 2 times, most recently from 87db44d to b2c327e Compare June 9, 2026 03:10
@yumin066

yumin066 commented Jun 9, 2026

Copy link
Copy Markdown
Collaborator Author

/bot run

@tensorrt-cicd

Copy link
Copy Markdown
Collaborator

PR_Github #52931 [ run ] triggered by Bot. Commit: b2c327e Link to invocation

@tensorrt-cicd

Copy link
Copy Markdown
Collaborator

PR_Github #52931 [ run ] completed with state SUCCESS. Commit: b2c327e
/LLM/main/L0_MergeRequest_PR pipeline #42176 completed with status: 'SUCCESS'

CI Report

Link to invocation

@yumin066
yumin066 force-pushed the qwen-image-layered-fp8 branch from b2c327e to 07fb4de Compare June 16, 2026 02:40
@yumin066
yumin066 requested a review from a team as a code owner June 16, 2026 02:40
@yumin066
yumin066 requested review from arysef and laikhtewari June 16, 2026 02:40
@yumin066
yumin066 force-pushed the qwen-image-layered-fp8 branch 2 times, most recently from 125488b to 1e0cf6b Compare June 16, 2026 04:15
@yumin066

Copy link
Copy Markdown
Collaborator Author

/bot run

@tensorrt-cicd

Copy link
Copy Markdown
Collaborator

PR_Github #54470 [ run ] triggered by Bot. Commit: 1e0cf6b Link to invocation

@tensorrt-cicd

Copy link
Copy Markdown
Collaborator

PR_Github #54470 [ run ] completed with state FAILURE. Commit: 1e0cf6b
/LLM/main/L0_MergeRequest_PR pipeline #43532 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

@yumin066
yumin066 force-pushed the qwen-image-layered-fp8 branch from 1e0cf6b to 9edb365 Compare June 16, 2026 14:03
@yumin066

Copy link
Copy Markdown
Collaborator Author

/bot run

@tensorrt-cicd

Copy link
Copy Markdown
Collaborator

PR_Github #54599 [ run ] triggered by Bot. Commit: 9edb365 Link to invocation

@tensorrt-cicd

Copy link
Copy Markdown
Collaborator

PR_Github #54599 [ run ] completed with state SUCCESS. Commit: 9edb365
/LLM/main/L0_MergeRequest_PR pipeline #43638 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

@yumin066

Copy link
Copy Markdown
Collaborator Author

/bot help

@github-actions

Copy link
Copy Markdown

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

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. Supports wildcard * for pattern matching (e.g., "*PerfSanity*" matches all stages containing PerfSanity). Examples: "A10-PyTorch-1, xxx", "PerfSanity". 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. Supports wildcard * for pattern matching. Examples: --extra-stage "H100_PCIe-TensorRT-Post-Merge-1, xxx", --extra-stage "Post-Merge".

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

--high-priority (OPTIONAL) : Run the pipeline with high priority. This option is restricted to authorized users only and will route the job to a high-priority queue.

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.

@yumin066

Copy link
Copy Markdown
Collaborator Author

/bot reuse-pipeline

@tensorrt-cicd

Copy link
Copy Markdown
Collaborator

PR_Github #54701 [ reuse-pipeline ] triggered by Bot. Commit: 9edb365 Link to invocation

@tensorrt-cicd

Copy link
Copy Markdown
Collaborator

PR_Github #54701 [ reuse-pipeline ] completed with state SUCCESS. Commit: 9edb365
Can't reuse PR_Github #54599 with status: FAILED

Link to invocation

@yumin066
yumin066 requested review from a team as code owners July 23, 2026 02:53
@yumin066
yumin066 force-pushed the qwen-image-layered-fp8 branch from b575bd1 to 52f0e5b Compare July 23, 2026 05:45
@yumin066

Copy link
Copy Markdown
Collaborator Author

/bot run

@tensorrt-cicd

Copy link
Copy Markdown
Collaborator

PR_Github #61208 [ run ] triggered by Bot. Commit: 52f0e5b Link to invocation

@yumin066
yumin066 force-pushed the qwen-image-layered-fp8 branch from 52f0e5b to 054ebd6 Compare July 23, 2026 06:41

Copy link
Copy Markdown
Collaborator Author

/bot run

@tensorrt-cicd

Copy link
Copy Markdown
Collaborator

PR_Github #61219 [ run ] triggered by Bot. Commit: 054ebd6 Link to invocation

@tensorrt-cicd

Copy link
Copy Markdown
Collaborator

PR_Github #61208 [ run ] completed with state ABORTED. Commit: 52f0e5b

Link to invocation

@yumin066
yumin066 force-pushed the qwen-image-layered-fp8 branch from 054ebd6 to 1af0acb Compare July 23, 2026 06:58
Signed-off-by: Min Yu <minyu@nvidia.com>

Copy link
Copy Markdown
Collaborator Author

/bot run

@yumin066
yumin066 force-pushed the qwen-image-layered-fp8 branch from 1af0acb to 8818aa9 Compare July 23, 2026 07:14
@tensorrt-cicd

Copy link
Copy Markdown
Collaborator

PR_Github #61232 [ run ] triggered by Bot. Commit: 8818aa9 Link to invocation

@tensorrt-cicd

Copy link
Copy Markdown
Collaborator

PR_Github #61219 [ run ] completed with state ABORTED. Commit: 054ebd6

Link to invocation

@tensorrt-cicd

Copy link
Copy Markdown
Collaborator

PR_Github #61232 [ run ] completed with state SUCCESS. Commit: 8818aa9
/LLM/main/L0_MergeRequest_PR pipeline #49471 completed with status: 'SUCCESS'

CI Report

Link to invocation

@yumin066
yumin066 requested a review from yibinl-nvidia July 25, 2026 13:02

@yibinl-nvidia yibinl-nvidia left a comment

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

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

LGTM, left one question.

Comment thread docs/source/models/visual-generation.md
@yumin066
yumin066 merged commit cfebf19 into NVIDIA:main Jul 28, 2026
7 checks passed
@github-actions

Copy link
Copy Markdown

LFS objects already in storage (1 file) — no sync needed.

These LFS-tracked files are already present in this repository's LFS storage:

  • tests/integration/defs/examples/visual_gen/golden/visual_gen_lpips/visual_gen_lpips_golden_media.zip

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

9 participants