From 19c014f4292863444a3d677d504ad58623395a58 Mon Sep 17 00:00:00 2001 From: BlenderNeko <126974546+BlenderNeko@users.noreply.github.com> Date: Fri, 12 May 2023 23:57:40 +0200 Subject: [PATCH] comment out annoying print statement --- comfy/sd.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/comfy/sd.py b/comfy/sd.py index 0200f7742..c6be900ad 100644 --- a/comfy/sd.py +++ b/comfy/sd.py @@ -583,7 +583,7 @@ class VAE: def broadcast_image_to(tensor, target_batch_size, batched_number): current_batch_size = tensor.shape[0] - print(current_batch_size, target_batch_size) + #print(current_batch_size, target_batch_size) if current_batch_size == 1: return tensor