[KDA-Pilot] Add diffusion residual-gate CUDA fast path for LTX2 (#29361)

Co-authored-by: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
Xiaoyu Zhang
2026-06-27 12:59:41 +08:00
committed by GitHub
co-authored by Claude Opus 4.8
parent cd6dedf972
commit 495f13fa12
6 changed files with 672 additions and 10 deletions
@@ -0,0 +1,114 @@
import random
import sys
from dataclasses import dataclass
import torch
from sglang.jit_kernel.diffusion.residual_gate_add import residual_gate_add_cuda
from sglang.jit_kernel.diffusion.triton.scale_shift import fuse_scale_shift_kernel
from sglang.test.ci.ci_register import register_cuda_ci
from sglang.utils import is_in_ci
register_cuda_ci(est_time=30, suite="base-b-kernel-benchmark-1-gpu-large")
@dataclass(frozen=True)
class Workload:
name: str
residual_shape: tuple[int, ...]
gate_shape: tuple[int, ...]
FULL_WORKLOADS = [
Workload("ltx2_bcast_s32640_c4096", (1, 32640, 4096), (1, 1, 4096)),
Workload("ltx2_full_s8160_c4096", (1, 8160, 4096), (1, 8160, 4096)),
Workload("ideogram4_bcast_s4096_c4608", (1, 4096, 4608), (1, 1, 4608)),
Workload("flux2_bcast_s4608_c3072", (1, 4608, 3072), (1, 1, 3072)),
Workload("flux2_bcast_s4096_c3072", (1, 4096, 3072), (1, 1, 3072)),
Workload("flux2_bcast_s512_c3072", (1, 512, 3072), (1, 1, 3072)),
Workload("ltx2_full_s126_c2048", (1, 126, 2048), (1, 126, 2048)),
]
CI_WORKLOADS = [
Workload("ltx2_bcast_s1024_c4096", (1, 1024, 4096), (1, 1, 4096)),
Workload("ltx2_full_s512_c4096", (1, 512, 4096), (1, 512, 4096)),
]
def cuda_event_us(fn, warmups: int, repeats: int, rounds: int) -> float:
for _ in range(warmups):
fn()
torch.cuda.synchronize()
samples = []
for _ in range(rounds):
start = torch.cuda.Event(enable_timing=True)
end = torch.cuda.Event(enable_timing=True)
start.record()
for _ in range(repeats):
fn()
end.record()
end.synchronize()
samples.append(start.elapsed_time(end) * 1000.0 / repeats)
samples.sort()
return samples[len(samples) // 2]
def benchmark() -> None:
if not torch.cuda.is_available():
print("CUDA required")
return
torch.manual_seed(20260625)
random.seed(20260625)
torch.cuda.set_device(0)
workloads = CI_WORKLOADS if is_in_ci() else FULL_WORKLOADS
warmups = 5 if is_in_ci() else 20
repeats = 5 if is_in_ci() else 20
rounds = 5 if is_in_ci() else 13
print("| workload | gate | torch us | triton us | cuda us | cuda/triton |")
print("|---|---|---:|---:|---:|---:|")
for workload in workloads:
residual = torch.randn(
workload.residual_shape, device="cuda", dtype=torch.bfloat16
)
update = torch.randn_like(residual)
gate = torch.randn(workload.gate_shape, device="cuda", dtype=torch.bfloat16)
ref = residual + update * gate
triton_out = fuse_scale_shift_kernel(update, gate, residual, scale_constant=0)
cuda_out = residual_gate_add_cuda(residual, update, gate)
torch.cuda.synchronize()
torch.testing.assert_close(triton_out, ref, atol=5e-2, rtol=5e-2)
torch.testing.assert_close(cuda_out, ref, atol=5e-2, rtol=5e-2)
fns = {
"torch": lambda: residual + update * gate,
"triton": lambda: fuse_scale_shift_kernel(
update, gate, residual, scale_constant=0
),
"cuda": lambda: residual_gate_add_cuda(residual, update, gate),
}
order = ["torch", "triton", "cuda"]
random.shuffle(order)
times = {
name: cuda_event_us(fns[name], warmups, repeats, rounds) for name in order
}
gate_kind = (
"bcast" if workload.gate_shape != workload.residual_shape else "full"
)
print(
f"| {workload.name} | {gate_kind} | {times['torch']:.2f} | "
f"{times['triton']:.2f} | {times['cuda']:.2f} | "
f"{times['triton'] / times['cuda']:.3f}x |"
)
torch.cuda.empty_cache()
if __name__ == "__main__":
benchmark()
sys.exit(0)
@@ -0,0 +1,101 @@
import sys
import pytest
import torch
from sglang.jit_kernel.diffusion.residual_gate_add import (
can_use_residual_gate_add_cuda,
residual_gate_add_cuda,
)
from sglang.test.ci.ci_register import register_cuda_ci
register_cuda_ci(est_time=30, suite="base-b-kernel-unit-1-gpu-large")
register_cuda_ci(est_time=30, suite="base-b-kernel-unit-1-gpu-b200")
CASES = [
((1, 1024, 4096), (1, 1, 4096)),
((1, 512, 4096), (1, 512, 4096)),
((1, 17, 65), (1, 1, 65)),
((1, 17, 65), (1, 17, 65)),
]
def _tol(dtype: torch.dtype) -> float:
return 1e-5 if dtype == torch.float32 else 5e-2
def _assert_matches_torch(out: torch.Tensor, ref: torch.Tensor) -> None:
if ref.dtype == torch.float32:
torch.testing.assert_close(out, ref, atol=_tol(ref.dtype), rtol=_tol(ref.dtype))
else:
torch.testing.assert_close(out, ref, atol=0, rtol=0)
@pytest.fixture(autouse=True)
def cuda_setup():
if not torch.cuda.is_available():
pytest.skip("CUDA required")
torch.cuda.manual_seed(0)
@pytest.mark.parametrize("residual_shape,gate_shape", CASES)
def test_residual_gate_add_matches_torch(residual_shape, gate_shape):
residual = torch.randn(residual_shape, device="cuda", dtype=torch.bfloat16)
update = torch.randn_like(residual)
gate = torch.randn(gate_shape, device="cuda", dtype=torch.bfloat16)
out = residual_gate_add_cuda(residual, update, gate)
ref = residual + update * gate
_assert_matches_torch(out, ref)
@pytest.mark.parametrize("dtype", [torch.float16, torch.bfloat16, torch.float32])
@pytest.mark.parametrize("gate_shape", [(1, 1, 64), (1, 9, 64)])
def test_residual_gate_add_dtypes(dtype, gate_shape):
residual = torch.randn((1, 9, 64), device="cuda", dtype=dtype)
update = torch.randn_like(residual)
gate = torch.randn(gate_shape, device="cuda", dtype=dtype)
out = residual_gate_add_cuda(residual, update, gate)
ref = residual + update * gate
_assert_matches_torch(out, ref)
def test_can_use_residual_gate_add_cuda_rejects_unsupported_inputs():
residual = torch.randn((1, 8, 64), device="cuda", dtype=torch.bfloat16)
update = torch.randn_like(residual)
gate = torch.randn((1, 1, 64), device="cuda", dtype=torch.bfloat16)
assert can_use_residual_gate_add_cuda(residual, update, gate)
assert not can_use_residual_gate_add_cuda(residual.cpu(), update, gate)
assert not can_use_residual_gate_add_cuda(residual, update.float(), gate)
assert not can_use_residual_gate_add_cuda(residual, update[:, ::2], gate)
assert not can_use_residual_gate_add_cuda(residual, update, gate[:, :, ::2])
# Only [1, ..., 1, D] row-broadcast gates are supported; a batched
# [B>1, 1, D] gate is not row-broadcast here and must fall back.
batched_residual = torch.randn((2, 8, 64), device="cuda", dtype=torch.bfloat16)
batched_update = torch.randn_like(batched_residual)
batched_gate = torch.randn((2, 1, 64), device="cuda", dtype=torch.bfloat16)
assert not can_use_residual_gate_add_cuda(
batched_residual, batched_update, batched_gate
)
def test_residual_gate_add_custom_op_torch_compile_fullgraph():
residual = torch.randn((1, 32, 128), device="cuda", dtype=torch.bfloat16)
update = torch.randn_like(residual)
gate = torch.randn((1, 1, 128), device="cuda", dtype=torch.bfloat16)
def fn(residual, update, gate):
return residual_gate_add_cuda(residual, update, gate)
compiled = torch.compile(fn, fullgraph=True)
out = compiled(residual, update, gate)
ref = residual + update * gate
_assert_matches_torch(out, ref)
if __name__ == "__main__":
sys.exit(pytest.main([__file__, "-v", "-s"]))