mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2025-04-20 03:13:30 +00:00
arg names
This commit is contained in:
parent
e716b529f7
commit
57cc24dca8
@ -72,7 +72,7 @@ class _ReduxAttnWrapper:
|
||||
x, c = self.previous(img=args["img"], txt=args["txt"],vec=args["vec"], pe=args["pe"], attn_mask=mask)
|
||||
return {"img": x, "txt": c}
|
||||
case SingleStreamBlock():
|
||||
x = self.previous(img=args["img"], vec=args["vec"], pe=args["pe"], attn_mask=mask)
|
||||
x = self.previous(args["img"], vec=args["vec"], pe=args["pe"], attn_mask=mask)
|
||||
return {"img": x}
|
||||
case _ReduxAttnWrapper():
|
||||
# pass along the mask, and tell the next redux what its part of the mask is
|
||||
|
Loading…
Reference in New Issue
Block a user