mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2025-07-07 15:57:10 +08: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)
|
x, c = self.previous(img=args["img"], txt=args["txt"],vec=args["vec"], pe=args["pe"], attn_mask=mask)
|
||||||
return {"img": x, "txt": c}
|
return {"img": x, "txt": c}
|
||||||
case SingleStreamBlock():
|
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}
|
return {"img": x}
|
||||||
case _ReduxAttnWrapper():
|
case _ReduxAttnWrapper():
|
||||||
# pass along the mask, and tell the next redux what its part of the mask is
|
# pass along the mask, and tell the next redux what its part of the mask is
|
||||||
|
Loading…
x
Reference in New Issue
Block a user