"comfy/git@developer.sourcefind.cn:chenpangpang/ComfyUI.git" did not exist on "4b9005e949224782236a8b914eae48bc503f1f18"
Commit 57beace3 authored by comfyanonymous's avatar comfyanonymous
Browse files

Fix VAEDecodeTiled minimum.

parent 1c012d69
...@@ -245,7 +245,7 @@ class VAEDecodeTiled: ...@@ -245,7 +245,7 @@ class VAEDecodeTiled:
@classmethod @classmethod
def INPUT_TYPES(s): def INPUT_TYPES(s):
return {"required": {"samples": ("LATENT", ), "vae": ("VAE", ), return {"required": {"samples": ("LATENT", ), "vae": ("VAE", ),
"tile_size": ("INT", {"default": 512, "min": 192, "max": 4096, "step": 64}) "tile_size": ("INT", {"default": 512, "min": 320, "max": 4096, "step": 64})
}} }}
RETURN_TYPES = ("IMAGE",) RETURN_TYPES = ("IMAGE",)
FUNCTION = "decode" FUNCTION = "decode"
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment