1
mirror of https://github.com/comfyanonymous/ComfyUI.git synced 2025-08-02 23:14:49 +08:00

Reduce min tile size for encode

This commit is contained in:
BVH
2023-08-28 22:39:09 +05:30
committed by GitHub
parent 9196588088
commit d86b222fe9

View File

@@ -283,7 +283,7 @@ class VAEEncodeTiled:
@classmethod
def INPUT_TYPES(s):
return {"required": {"pixels": ("IMAGE", ), "vae": ("VAE", ),
"tile_size": ("INT", {"default": 512, "min": 512, "max": 4096, "step": 64})
"tile_size": ("INT", {"default": 512, "min": 192, "max": 4096, "step": 64})
}}
RETURN_TYPES = ("LATENT",)
FUNCTION = "encode"