From 6cd4abba97d88340ad60fd3108b4b09ff3161621 Mon Sep 17 00:00:00 2001 From: Vladimir Mandic Date: Mon, 4 Dec 2023 19:16:35 -0500 Subject: [PATCH] cleanup --- modules/processing.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/modules/processing.py b/modules/processing.py index 3f115377f..d0cbb7a26 100644 --- a/modules/processing.py +++ b/modules/processing.py @@ -705,15 +705,12 @@ def process_images(p: StableDiffusionProcessing) -> Processed: modules.sd_vae.reload_vae_weights() shared.prompt_styles.apply_styles_to_extra(p) - print('HERE1') if not shared.opts.cuda_compile: modules.sd_models.apply_token_merging(p.sd_model, p.get_token_merging_ratio()) modules.sd_hijack_freeu.apply_freeu(p, shared.backend == shared.Backend.ORIGINAL) - print('HERE2') modules.script_callbacks.before_process_callback(p) - print('HERE3') if shared.cmd_opts.profile: import cProfile profile_python = cProfile.Profile() @@ -734,7 +731,6 @@ def process_images(p: StableDiffusionProcessing) -> Processed: else: with context_hypertile_vae(p), context_hypertile_unet(p): res = process_images_inner(p) - print('HERE4') finally: if not shared.opts.cuda_compile: