From c47684c8f6546657533552f4d5a4d21c145f5538 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nick=20M=C3=B6hrmann?= <81536709+Shiny1708@users.noreply.github.com> Date: Sun, 22 Oct 2023 21:45:03 +0200 Subject: [PATCH] Update efficiency_nodes.py Cahnged eff loader sdxl steps to 64 --- efficiency_nodes.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/efficiency_nodes.py b/efficiency_nodes.py index 669f11b..216f58f 100644 --- a/efficiency_nodes.py +++ b/efficiency_nodes.py @@ -214,8 +214,8 @@ class TSC_EfficientLoaderSDXL(TSC_EfficientLoader): "negative": ("STRING", {"default": "CLIP_NEGATIVE", "multiline": True}), "token_normalization": (["none", "mean", "length", "length+mean"],), "weight_interpretation": (["comfy", "A1111", "compel", "comfy++", "down_weight"],), - "empty_latent_width": ("INT", {"default": 1024, "min": 64, "max": MAX_RESOLUTION, "step": 128}), - "empty_latent_height": ("INT", {"default": 1024, "min": 64, "max": MAX_RESOLUTION, "step": 128}), + "empty_latent_width": ("INT", {"default": 1024, "min": 64, "max": MAX_RESOLUTION, "step": 64}), + "empty_latent_height": ("INT", {"default": 1024, "min": 64, "max": MAX_RESOLUTION, "step": 64}), "batch_size": ("INT", {"default": 1, "min": 1, "max": 64})}, "optional": {"lora_stack": ("LORA_STACK", ), "cnet_stack": ("CONTROL_NET_STACK",),}, "hidden": { "prompt": "PROMPT", "my_unique_id": "UNIQUE_ID",},