From 39cc54889cad6cab07a782d2d0a3390898e77529 Mon Sep 17 00:00:00 2001 From: lllyasviel Date: Thu, 25 Jan 2024 11:22:37 -0800 Subject: [PATCH] Update processing.py --- modules/processing.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/modules/processing.py b/modules/processing.py index 343eb43a..01d06d83 100644 --- a/modules/processing.py +++ b/modules/processing.py @@ -850,8 +850,7 @@ def process_images_inner(p: StableDiffusionProcessing) -> Processed: p.parse_extra_network_prompts() if not p.disable_extra_networks: - with devices.autocast(): - extra_networks.activate(p, p.extra_network_data) + extra_networks.activate(p, p.extra_network_data) if p.scripts is not None: p.scripts.process_batch(p, batch_number=n, prompts=p.prompts, seeds=p.seeds, subseeds=p.subseeds)