Views
No views yet

| File | Format | Base Model | Notes |
|---|---|---|---|
diffusion_models/ltx-2.5-22b-distilled-transformer-int4_convrot.safetensors | INT4 ConvRot | LTX-2.5 22B distilled transformer | Smallest / fastest, lowest precision |
diffusion_models/ltx-2.5-22b-distilled-transformer-w4a8_convrot.safetensors | W4A8 ConvRot | LTX-2.5 22B distilled transformer | Better fidelity than INT4, larger than INT4 |
diffusion_models/ltx-2.5-22b-dev-transformer-int4_convrot.safetensors | INT4 ConvRot | LTX-2.5 22B dev transformer | Non-distilled base model |
diffusion_models/ltx-2.5-22b-dev-transformer-w4a8_convrot.safetensors | W4A8 ConvRot | LTX-2.5 22B dev transformer | Non-distilled base model |
text_encoders/gemma4-12b-with-proj-ltx-2.5-int4_convrot.safetensors | INT4 ConvRot | Gemma4-12B (LTX-2.5 text encoder, with projection heads) | |
text_encoders/gemma4-12b-with-proj-ltx-2.5-w4a8_convrot.safetensors | W4A8 ConvRot | Gemma4-12B (LTX-2.5 text encoder, with projection heads) |
Adjust the table above to match whichever files are actually present in this repo — file names should mirror what the converter node produced (it appends-<target_format>to the source filename automatically).
AsymW4A8Int8Layout
(asym_w4a8_int8) support. Recommended default if your comfy-kitchen build supports it.comfy/ops.py + comfy/quant_ops.py).AVTransformer3DModel) and the Gemma4 text encoder were quantized layer-by-layer with the
following tensors kept at full precision to preserve stability and output quality:diffusion_models/*):norm layers (k_norm, q_norm, layer norms)to_gate_logits — the audio↔video cross-attention mixing gatesadaln_single variants (7 total: adaln_single, audio_adaln_single, audio_prompt_adaln_single,
av_ca_a2v_gate_adaln_single, av_ca_audio_scale_shift_adaln_single, av_ca_v2a_gate_adaln_single,
av_ca_video_scale_shift_adaln_single)patchify_proj / audio_patchify_proj, proj_out / audio_proj_outscale_shift_table and all its variants (kept in F32, matching the original checkpoint precision)text_encoders/*):embed_tokens, layer_scalar, model.normvision_model.* (the vision tower)text_embedding_projection.* (the large audio/video conditioning-aggregation projections)audio_projector.*, multi_modal_projector.*self_attn.{q,k,v,o}_proj and mlp.{gate,up,down}_proj in each of the 48 decoder layers are quantized.-comfy-int8-convrot reference release against the BF16 source, for both the
transformer and the text encoder.asym_w4a8_int8 loader path itself is confirmed working in ComfyUI.
The blacklist used here is reused from the INT8-verified profile; it has not been checked against an
official W4A8 reference release from Lightricks (none exists yet).ComfyUI/models/diffusion_models/ComfyUI/models/text_encoders/AsymW4A8Int8Layout) and/or INT4 ConvRot (TensorCoreConvRotW4A4Layout)
support built in, depending on which file you use