It's actually possible to torch.compile the unet now.

This commit is contained in:
comfyanonymous 2023-07-18 21:36:35 -04:00
parent 51d5477579
commit 9ba440995a

View File

@ -36,7 +36,7 @@ def uniq(arr):
def default(val, d):
if exists(val):
return val
return d() if isfunction(d) else d
return d
def max_neg_value(t):