Unverified Commit d86b222f authored by BVH's avatar BVH Committed by GitHub
Browse files

Reduce min tile size for encode

parent 91965880
...@@ -283,7 +283,7 @@ class VAEEncodeTiled: ...@@ -283,7 +283,7 @@ class VAEEncodeTiled:
@classmethod @classmethod
def INPUT_TYPES(s): def INPUT_TYPES(s):
return {"required": {"pixels": ("IMAGE", ), "vae": ("VAE", ), 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",) RETURN_TYPES = ("LATENT",)
FUNCTION = "encode" FUNCTION = "encode"
......
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