aboutsummaryrefslogtreecommitdiff
path: root/modules/processing.py
diff options
context:
space:
mode:
Diffstat (limited to 'modules/processing.py')
-rw-r--r--modules/processing.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/modules/processing.py b/modules/processing.py
index 7e73d7e2..d73c8bfc 100644
--- a/modules/processing.py
+++ b/modules/processing.py
@@ -890,7 +890,6 @@ def process_images_inner(p: StableDiffusionProcessing) -> Processed:
p.sd_model.alphas_cumprod = p.sd_model.alphas_cumprod.half().to(shared.device)
if opts.sd_noise_schedule == "Zero Terminal SNR":
p.extra_generation_params['Noise Schedule'] = opts.sd_noise_schedule
- print("rescaling noise schedule for zero snr")
p.sd_model.alphas_cumprod = rescale_zero_terminal_snr_abar(p.sd_model.alphas_cumprod).to(shared.device)
with devices.without_autocast() if devices.unet_needs_upcast else devices.autocast():