Merge branch 'comfyanonymous:master' into master

This commit is contained in:
patientx 2025-01-13 14:46:19 +03:00 committed by GitHub
commit aa2a83ec35
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -17,7 +17,7 @@
from typing import Any
import torch
from einops import pack, rearrange, unpack
from einops import rearrange
import comfy.ops
@ -98,14 +98,6 @@ def default(*args):
return None
def pack_one(t, pattern):
return pack([t], pattern)
def unpack_one(t, ps, pattern):
return unpack(t, ps, pattern)[0]
def round_ste(z: torch.Tensor) -> torch.Tensor:
"""Round with straight through gradients."""
zhat = z.round()