diff options
author | Kohaku-Blueleaf <59680068+KohakuBlueleaf@users.noreply.github.com> | 2023-11-04 04:56:58 +0000 |
---|---|---|
committer | Kohaku-Blueleaf <59680068+KohakuBlueleaf@users.noreply.github.com> | 2023-11-04 04:56:58 +0000 |
commit | c3facab495e6bb29b5e0b16d064b44851a733a95 (patch) | |
tree | d2bc4c05b80b31e1c8d8e7936f1ec15ab01535f4 /modules/processing.py | |
parent | ddc2a3499b8cd120b4a42358bcd33137ce1d1e75 (diff) | |
parent | 452ab8fe724cc264a926c966e902727e743b2268 (diff) | |
download | stable-diffusion-webui-gfx803-c3facab495e6bb29b5e0b16d064b44851a733a95.tar.gz stable-diffusion-webui-gfx803-c3facab495e6bb29b5e0b16d064b44851a733a95.tar.bz2 stable-diffusion-webui-gfx803-c3facab495e6bb29b5e0b16d064b44851a733a95.zip |
Merge branch 'dev' into test-fp8
Diffstat (limited to 'modules/processing.py')
-rw-r--r-- | modules/processing.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/processing.py b/modules/processing.py index 40598f5c..70ad1ebe 100644 --- a/modules/processing.py +++ b/modules/processing.py @@ -886,6 +886,8 @@ def process_images_inner(p: StableDiffusionProcessing) -> Processed: devices.torch_gc()
+ state.nextjob()
+
if p.scripts is not None:
p.scripts.postprocess_batch(p, x_samples_ddim, batch_number=n)
@@ -958,8 +960,6 @@ def process_images_inner(p: StableDiffusionProcessing) -> Processed: devices.torch_gc()
- state.nextjob()
-
if not infotexts:
infotexts.append(Processed(p, []).infotext(p, 0))
|