diff options
author | Artem Zagidulin <p0chta@yandex.ru> | 2022-11-02 18:30:50 +0000 |
---|---|---|
committer | Artem Zagidulin <p0chta@yandex.ru> | 2022-11-02 18:30:50 +0000 |
commit | de64146ad2fc2030a4cd3545676f9e18c93b8b18 (patch) | |
tree | 4f8770ee3416bc2ad6e2ad8464ae7fa644b776e0 /modules/processing.py | |
parent | a9e979977a8e3999b01b6a086bb1332ab7ab308b (diff) | |
download | stable-diffusion-webui-gfx803-de64146ad2fc2030a4cd3545676f9e18c93b8b18.tar.gz stable-diffusion-webui-gfx803-de64146ad2fc2030a4cd3545676f9e18c93b8b18.tar.bz2 stable-diffusion-webui-gfx803-de64146ad2fc2030a4cd3545676f9e18c93b8b18.zip |
add number of itter
Diffstat (limited to 'modules/processing.py')
-rw-r--r-- | modules/processing.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/processing.py b/modules/processing.py index 72a2ee4e..17f4a5ec 100644 --- a/modules/processing.py +++ b/modules/processing.py @@ -510,7 +510,7 @@ def process_images_inner(p: StableDiffusionProcessing) -> Processed: break
if p.scripts is not None:
- p.scripts.process_one(p)
+ p.scripts.process_one(p, n)
with devices.autocast():
uc = prompt_parser.get_learned_conditioning(shared.sd_model, len(prompts) * [p.negative_prompt], p.steps)
|