94057c3d3e
PR Test (NPU) / check-changes (push) Has been cancelled
PR Test (NPU) / pr-gate (push) Has been cancelled
PR Test (NPU) / set-image-config (push) Has been cancelled
PR Test (NPU) / stage-b-test-1-npu-a2 (0) (push) Has been cancelled
PR Test (NPU) / stage-b-test-1-npu-a2 (1) (push) Has been cancelled
PR Test (NPU) / stage-b-test-2-npu-a2 (0) (push) Has been cancelled
PR Test (NPU) / stage-b-test-2-npu-a2 (1) (push) Has been cancelled
PR Test (NPU) / stage-b-test-4-npu-a3 (push) Has been cancelled
PR Test (NPU) / stage-b-test-16-npu-a3 (push) Has been cancelled
PR Test (NPU) / multimodal-gen-test-1-npu-a3 (push) Has been cancelled
PR Test (NPU) / multimodal-gen-test-2-npu-a3 (push) Has been cancelled
PR Test (Arm64) / pr-gate (push) Has been cancelled
PR Test (Arm64) / check-changes (push) Has been cancelled
PR Test (Arm64) / build-test (push) Has been cancelled
PR Test (sgl-router) / gate (push) Has been cancelled
PR Test (sgl-router) / tier-1 — lint (push) Has been cancelled
PR Test (sgl-router) / tier-2 — build + test (push) Has been cancelled
PR Test (sgl-router) / tier-3 — docker (placeholder) (push) Has been cancelled
PR Test (sgl-router) / tier-3 — k8s integration (push) Has been cancelled
PR Test (sgl-router) / tier-3 — e2e (push) Has been cancelled
PR Test (sgl-router) / finish (push) Has been cancelled
PR Test (NPU) / single-node-poc (map[name:qwen3_6_27b_w8a8_1p_in64k_out1k_50ms runner:linux-aarch64-a3-2 test_case:test/registered/ascend/performance/qwen3_6_27b/test_npu_qwen3_6_27b_w8a8_1p_in64k_out1k_50ms.py test_type:perf]) (push) Has been cancelled
PR Test (NPU) / pr-test-npu-finish (push) Has been cancelled
PR Test (Xeon) / pr-gate (push) Has been cancelled
PR Test (Xeon) / check-changes (push) Has been cancelled
PR Test (Xeon) / build-test (, xeon-gnr, base-b-test-cpu) (push) Has been cancelled
PR Test (XPU) / check-changes (push) Has been cancelled
PR Test (XPU) / pr-gate (push) Has been cancelled
PR Test (XPU) / stage-a-test-1-gpu-xpu (push) Has been cancelled
PR Test (XPU) / wait-for-stage-a (push) Has been cancelled
PR Test (XPU) / stage-b-test-1-gpu-xpu (push) Has been cancelled
PR Test (XPU) / finish (push) Has been cancelled
CI Model Inventory / build-inventory (push) Has been cancelled
Lint / lint (push) Has been cancelled
PR Benchmark (SMG Components) / Benchmark Compilation Check (push) Has been cancelled
PR Benchmark (SMG Components) / Benchmark - Manual Policy (push) Has been cancelled
PR Benchmark (SMG Components) / Benchmark - Request Processing (push) Has been cancelled
PR Benchmark (SMG Components) / Benchmark Summary (push) Has been cancelled
PR Test (SMG) / build-wheel (push) Has been cancelled
Release SGLang Model Gateway to PyPI / build on windows (x86_64 - auto) (push) Has been cancelled
Release SGLang Model Gateway to PyPI / build on macos (x86_64 - auto) (push) Has been cancelled
PR Test (SMG) / python-unit-tests (push) Has been cancelled
PR Test (SMG) / unit-tests (push) Has been cancelled
PR Test (SMG) / benchmarks (push) Has been cancelled
PR Test (SMG) / chat-completions (push) Has been cancelled
PR Test (SMG) / chat-completions-4gpu (push) Has been cancelled
PR Test (SMG) / e2e (push) Has been cancelled
PR Test (SMG) / docker-build-test (push) Has been cancelled
PR Test (SMG) / k8s-integration (push) Has been cancelled
PR Test (SMG) / finish (push) Has been cancelled
PR Test (SMG) / summarize-benchmarks (push) Has been cancelled
Release SGLang Model Gateway Docker Image / publish (push) Has been cancelled
Release SGLang Model Gateway to PyPI / build on macos (aarch64 - auto) (push) Has been cancelled
Release SGLang Model Gateway to PyPI / build on linux (aarch64 - auto) (push) Has been cancelled
Release SGLang Model Gateway to PyPI / build on linux (x86_64 - auto) (push) Has been cancelled
Release SGLang Model Gateway to PyPI / build on linux (aarch64 - musllinux_1_1) (push) Has been cancelled
Release SGLang Model Gateway to PyPI / build on linux (x86_64 - musllinux_1_1) (push) Has been cancelled
Release SGLang Model Gateway to PyPI / Build SDist (push) Has been cancelled
Release SGLang Model Gateway to PyPI / Upload to PyPI (push) Has been cancelled
Release SGLang Kernels / build-cu129-matrix (aarch64, 12.9, 3.10, arm-kernel-build-node) (push) Has been cancelled
Release SGLang Kernels / build-cu129-matrix (x86_64, 12.9, 3.10, x64-kernel-build-node) (push) Has been cancelled
Release SGLang Kernels / release-cu129 (push) Has been cancelled
Release SGLang Kernels / build-cu130-matrix (aarch64, 13.0, 3.10, arm-kernel-build-node) (push) Has been cancelled
Release SGLang Kernels / build-cu130-matrix (x86_64, 13.0, 3.10, x64-kernel-build-node) (push) Has been cancelled
Release SGLang Kernels / release-cu130 (push) Has been cancelled
Release SGLang Kernels / build-rocm-matrix (3.10, 700) (push) Has been cancelled
Release SGLang Kernels / build-rocm-matrix (3.10, 720) (push) Has been cancelled
Release SGLang Kernels / release-rocm700 (push) Has been cancelled
Release SGLang Kernels / release-rocm720 (push) Has been cancelled
Release SGLang Kernels / build-musa43 (43, 3.10) (push) Has been cancelled
Release SGLang Kernels / release-musa43 (push) Has been cancelled
185 lines
6.6 KiB
Python
185 lines
6.6 KiB
Python
# SPDX-License-Identifier: Apache-2.0
|
|
"""StableDiffusion3 Transformer model implementation.
|
|
|
|
NOTE: This initial implementation uses diffusers' JointTransformerBlock directly.
|
|
A native SGLang attention implementation is needed for FlashAttention, TP/SP,
|
|
quantization, and LoRA support.
|
|
"""
|
|
|
|
from typing import Any
|
|
|
|
import torch
|
|
import torch.nn as nn
|
|
from diffusers.models.attention import JointTransformerBlock
|
|
from diffusers.models.embeddings import CombinedTimestepTextProjEmbeddings, PatchEmbed
|
|
from diffusers.models.normalization import AdaLayerNormContinuous
|
|
|
|
from sglang.multimodal_gen.configs.models.dits.stablediffusion3 import (
|
|
StableDiffusion3TransformerConfig,
|
|
)
|
|
from sglang.multimodal_gen.runtime.managers.memory_managers.layerwise_offload import (
|
|
LayerwiseOffloadableModuleMixin,
|
|
)
|
|
from sglang.multimodal_gen.runtime.models.dits.base import CachableDiT
|
|
from sglang.multimodal_gen.runtime.utils.logging_utils import init_logger
|
|
|
|
logger = init_logger(__name__)
|
|
|
|
|
|
class SD3Transformer2DModel(CachableDiT, LayerwiseOffloadableModuleMixin):
|
|
_supports_gradient_checkpointing = True
|
|
_no_split_modules = ["JointTransformerBlock"]
|
|
_skip_layerwise_casting_patterns = ["pos_embed", "norm"]
|
|
layer_names = ["transformer_blocks"]
|
|
|
|
def __init__(
|
|
self,
|
|
config: StableDiffusion3TransformerConfig,
|
|
hf_config: dict[str, Any] | None = None,
|
|
quant_config=None,
|
|
):
|
|
super().__init__(config=config, hf_config=hf_config)
|
|
self.config = config
|
|
arch_config = config.arch_config
|
|
sample_size = arch_config.sample_size
|
|
patch_size = arch_config.patch_size
|
|
in_channels = arch_config.in_channels
|
|
num_layers = arch_config.num_layers
|
|
attention_head_dim = arch_config.attention_head_dim
|
|
num_attention_heads = arch_config.num_attention_heads
|
|
joint_attention_dim = arch_config.joint_attention_dim
|
|
caption_projection_dim = arch_config.caption_projection_dim
|
|
pooled_projection_dim = arch_config.pooled_projection_dim
|
|
out_channels = arch_config.out_channels
|
|
pos_embed_max_size = arch_config.pos_embed_max_size
|
|
dual_attention_layers = arch_config.dual_attention_layers
|
|
qk_norm = arch_config.qk_norm
|
|
|
|
self.out_channels = out_channels if out_channels is not None else in_channels
|
|
self.inner_dim = num_attention_heads * attention_head_dim
|
|
self.patch_size = patch_size
|
|
|
|
self.pos_embed = PatchEmbed(
|
|
height=sample_size,
|
|
width=sample_size,
|
|
patch_size=patch_size,
|
|
in_channels=in_channels,
|
|
embed_dim=self.inner_dim,
|
|
pos_embed_max_size=pos_embed_max_size,
|
|
)
|
|
self.time_text_embed = CombinedTimestepTextProjEmbeddings(
|
|
embedding_dim=self.inner_dim, pooled_projection_dim=pooled_projection_dim
|
|
)
|
|
self.context_embedder = nn.Linear(joint_attention_dim, caption_projection_dim)
|
|
|
|
self.transformer_blocks = nn.ModuleList(
|
|
[
|
|
JointTransformerBlock(
|
|
dim=self.inner_dim,
|
|
num_attention_heads=num_attention_heads,
|
|
attention_head_dim=attention_head_dim,
|
|
context_pre_only=i == num_layers - 1,
|
|
qk_norm=qk_norm,
|
|
use_dual_attention=i in dual_attention_layers,
|
|
)
|
|
for i in range(num_layers)
|
|
]
|
|
)
|
|
|
|
self.norm_out = AdaLayerNormContinuous(
|
|
self.inner_dim, self.inner_dim, elementwise_affine=False, eps=1e-6
|
|
)
|
|
self.proj_out = nn.Linear(
|
|
self.inner_dim, patch_size * patch_size * self.out_channels, bias=True
|
|
)
|
|
|
|
self.gradient_checkpointing = False
|
|
|
|
def forward(
|
|
self,
|
|
hidden_states: torch.Tensor,
|
|
encoder_hidden_states: torch.Tensor | None = None,
|
|
pooled_projections: torch.Tensor | None = None,
|
|
timestep: torch.LongTensor | None = None,
|
|
block_controlnet_hidden_states: list | None = None,
|
|
guidance: torch.Tensor | None = None,
|
|
joint_attention_kwargs: dict[str, Any] | None = None,
|
|
skip_layers: list[int] | None = None,
|
|
) -> torch.Tensor:
|
|
if encoder_hidden_states is None:
|
|
raise ValueError("encoder_hidden_states must be provided.")
|
|
if pooled_projections is None:
|
|
raise ValueError("pooled_projections must be provided.")
|
|
|
|
encoder_embeddings = encoder_hidden_states
|
|
|
|
height, width = hidden_states.shape[-2:]
|
|
|
|
hidden_states = self.pos_embed(hidden_states)
|
|
temb = self.time_text_embed(timestep, pooled_projections)
|
|
encoder_embeddings = self.context_embedder(encoder_embeddings)
|
|
|
|
skip_layer_set = set(skip_layers) if skip_layers else set()
|
|
|
|
if block_controlnet_hidden_states is not None:
|
|
interval_control = len(self.transformer_blocks) / len(
|
|
block_controlnet_hidden_states
|
|
)
|
|
else:
|
|
interval_control = 0
|
|
|
|
for index_block, block in enumerate(self.transformer_blocks):
|
|
if index_block not in skip_layer_set:
|
|
encoder_embeddings, hidden_states = block(
|
|
hidden_states=hidden_states,
|
|
encoder_hidden_states=encoder_embeddings,
|
|
temb=temb,
|
|
joint_attention_kwargs=joint_attention_kwargs,
|
|
)
|
|
|
|
# controlnet residual
|
|
if (
|
|
block_controlnet_hidden_states is not None
|
|
and block.context_pre_only is False
|
|
):
|
|
hidden_states = (
|
|
hidden_states
|
|
+ block_controlnet_hidden_states[
|
|
int(index_block / interval_control)
|
|
]
|
|
)
|
|
|
|
hidden_states = self.norm_out(hidden_states, temb)
|
|
hidden_states = self.proj_out(hidden_states)
|
|
|
|
# unpatchify
|
|
patch_size = self.patch_size
|
|
height = height // patch_size
|
|
width = width // patch_size
|
|
|
|
hidden_states = hidden_states.reshape(
|
|
shape=(
|
|
hidden_states.shape[0],
|
|
height,
|
|
width,
|
|
patch_size,
|
|
patch_size,
|
|
self.out_channels,
|
|
)
|
|
)
|
|
hidden_states = hidden_states.permute(0, 5, 1, 3, 2, 4)
|
|
output = hidden_states.reshape(
|
|
shape=(
|
|
hidden_states.shape[0],
|
|
self.out_channels,
|
|
height * patch_size,
|
|
width * patch_size,
|
|
)
|
|
)
|
|
|
|
return output
|
|
|
|
|
|
# Entry class for registry
|
|
EntryClass = SD3Transformer2DModel
|