File size: 8,234 Bytes
58b87c6 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 | """DDIM and DPM++2M samplers for VP diffusion with dual PDG support."""
from __future__ import annotations
from typing import Protocol
import torch
from torch import Tensor
from .vp_diffusion import (
alpha_sigma_from_logsnr,
broadcast_time_like,
shifted_cosine_interpolated_logsnr_from_t,
)
class DecoderForwardFn(Protocol):
"""Callable that predicts x0 from (x_t, t, latents) with dual PDG flags."""
def __call__(
self,
x_t: Tensor,
t: Tensor,
latents: Tensor,
*,
drop_middle_blocks: bool = False,
mask_latent_tokens: bool = False,
) -> Tensor: ...
def _reconstruct_eps_from_x0(
*, x_t: Tensor, x0_hat: Tensor, alpha: Tensor, sigma: Tensor
) -> Tensor:
"""Reconstruct eps_hat from (x_t, x0_hat) under VP parameterization.
eps_hat = (x_t - alpha * x0_hat) / sigma. All float32.
"""
alpha_view = broadcast_time_like(alpha, x_t).to(dtype=torch.float32)
sigma_view = broadcast_time_like(sigma, x_t).to(dtype=torch.float32)
x_t_f32 = x_t.to(torch.float32)
x0_f32 = x0_hat.to(torch.float32)
return (x_t_f32 - alpha_view * x0_f32) / sigma_view
def _ddim_step(
*,
x0_hat: Tensor,
eps_hat: Tensor,
alpha_next: Tensor,
sigma_next: Tensor,
ref: Tensor,
) -> Tensor:
"""DDIM step: x_next = alpha_next * x0_hat + sigma_next * eps_hat."""
a = broadcast_time_like(alpha_next, ref).to(dtype=torch.float32)
s = broadcast_time_like(sigma_next, ref).to(dtype=torch.float32)
return a * x0_hat + s * eps_hat
def _predict_with_pdg(
forward_fn: DecoderForwardFn,
state: Tensor,
t_vec: Tensor,
latents: Tensor,
*,
pdg_mode: str,
pdg_strength: float,
) -> Tensor:
"""Run decoder forward with optional PDG guidance.
Args:
forward_fn: Decoder forward function.
state: Current noised state [B, C, H, W].
t_vec: Timestep vector [B].
latents: Encoder latents.
pdg_mode: "disabled", "path_drop", or "token_mask".
pdg_strength: CFG-like strength for PDG.
Returns:
x0_hat prediction in float32.
"""
if pdg_mode == "path_drop":
x0_uncond = forward_fn(
state, t_vec, latents, drop_middle_blocks=True
).to(torch.float32)
x0_cond = forward_fn(
state, t_vec, latents, drop_middle_blocks=False
).to(torch.float32)
return x0_uncond + pdg_strength * (x0_cond - x0_uncond)
elif pdg_mode == "token_mask":
x0_uncond = forward_fn(
state, t_vec, latents, mask_latent_tokens=True
).to(torch.float32)
x0_cond = forward_fn(
state, t_vec, latents, mask_latent_tokens=False
).to(torch.float32)
return x0_uncond + pdg_strength * (x0_cond - x0_uncond)
else:
return forward_fn(
state, t_vec, latents, drop_middle_blocks=False
).to(torch.float32)
def run_ddim(
*,
forward_fn: DecoderForwardFn,
initial_state: Tensor,
schedule: Tensor,
latents: Tensor,
logsnr_min: float,
logsnr_max: float,
log_change_high: float = 0.0,
log_change_low: float = 0.0,
pdg_mode: str = "disabled",
pdg_strength: float = 1.5,
device: torch.device | None = None,
) -> Tensor:
"""Run DDIM sampling loop with dual PDG support.
Args:
forward_fn: Decoder forward function (x_t, t, latents) -> x0_hat.
initial_state: Starting noised state [B, C, H, W] in float32.
schedule: Descending t-schedule [num_steps] in [0, 1].
latents: Encoder latents [B, bottleneck_dim, h, w].
logsnr_min, logsnr_max: VP schedule endpoints.
log_change_high, log_change_low: Shifted-cosine schedule parameters.
pdg_mode: "disabled", "path_drop", or "token_mask".
pdg_strength: CFG-like strength for PDG.
device: Target device.
Returns:
Denoised samples [B, C, H, W] in float32.
"""
run_device = device or initial_state.device
batch_size = int(initial_state.shape[0])
state = initial_state.to(device=run_device, dtype=torch.float32)
# Precompute logSNR, alpha, sigma for all schedule points
lmb = shifted_cosine_interpolated_logsnr_from_t(
schedule.to(device=run_device),
logsnr_min=logsnr_min,
logsnr_max=logsnr_max,
log_change_high=log_change_high,
log_change_low=log_change_low,
)
alpha_sched, sigma_sched = alpha_sigma_from_logsnr(lmb)
for i in range(int(schedule.numel()) - 1):
t_i = schedule[i]
a_t = alpha_sched[i].expand(batch_size)
s_t = sigma_sched[i].expand(batch_size)
a_next = alpha_sched[i + 1].expand(batch_size)
s_next = sigma_sched[i + 1].expand(batch_size)
# Model prediction with optional PDG
t_vec = t_i.expand(batch_size).to(device=run_device, dtype=torch.float32)
x0_hat = _predict_with_pdg(
forward_fn, state, t_vec, latents,
pdg_mode=pdg_mode, pdg_strength=pdg_strength,
)
eps_hat = _reconstruct_eps_from_x0(
x_t=state, x0_hat=x0_hat, alpha=a_t, sigma=s_t
)
state = _ddim_step(
x0_hat=x0_hat,
eps_hat=eps_hat,
alpha_next=a_next,
sigma_next=s_next,
ref=state,
)
return state
def run_dpmpp_2m(
*,
forward_fn: DecoderForwardFn,
initial_state: Tensor,
schedule: Tensor,
latents: Tensor,
logsnr_min: float,
logsnr_max: float,
log_change_high: float = 0.0,
log_change_low: float = 0.0,
pdg_mode: str = "disabled",
pdg_strength: float = 1.5,
device: torch.device | None = None,
) -> Tensor:
"""Run DPM++2M sampling loop with dual PDG support.
Multi-step solver using exponential integrator formulation in half-lambda space.
"""
run_device = device or initial_state.device
batch_size = int(initial_state.shape[0])
state = initial_state.to(device=run_device, dtype=torch.float32)
# Precompute logSNR, alpha, sigma, half-lambda for all schedule points
lmb = shifted_cosine_interpolated_logsnr_from_t(
schedule.to(device=run_device),
logsnr_min=logsnr_min,
logsnr_max=logsnr_max,
log_change_high=log_change_high,
log_change_low=log_change_low,
)
alpha_sched, sigma_sched = alpha_sigma_from_logsnr(lmb)
half_lambda = 0.5 * lmb.to(torch.float32)
x0_prev: Tensor | None = None
for i in range(int(schedule.numel()) - 1):
t_i = schedule[i]
s_t = sigma_sched[i].expand(batch_size)
a_next = alpha_sched[i + 1].expand(batch_size)
s_next = sigma_sched[i + 1].expand(batch_size)
# Model prediction with optional PDG
t_vec = t_i.expand(batch_size).to(device=run_device, dtype=torch.float32)
x0_hat = _predict_with_pdg(
forward_fn, state, t_vec, latents,
pdg_mode=pdg_mode, pdg_strength=pdg_strength,
)
lam_t = half_lambda[i].expand(batch_size)
lam_next = half_lambda[i + 1].expand(batch_size)
h = (lam_next - lam_t).to(torch.float32)
phi_1 = torch.expm1(-h)
sigma_ratio = (s_next / s_t).to(torch.float32)
if i == 0 or x0_prev is None:
# First-order step
state = (
sigma_ratio.view(-1, *([1] * (state.dim() - 1))) * state
- broadcast_time_like(a_next, state).to(torch.float32)
* broadcast_time_like(phi_1, state).to(torch.float32)
* x0_hat
)
else:
# Second-order step
lam_prev = half_lambda[i - 1].expand(batch_size)
h_0 = (lam_t - lam_prev).to(torch.float32)
r0 = h_0 / h
d1_0 = (x0_hat - x0_prev) / broadcast_time_like(r0, x0_hat)
common = broadcast_time_like(a_next, state).to(
torch.float32
) * broadcast_time_like(phi_1, state).to(torch.float32)
state = (
sigma_ratio.view(-1, *([1] * (state.dim() - 1))) * state
- common * x0_hat
- 0.5 * common * d1_0
)
x0_prev = x0_hat
return state
|