diff options
author | AUTOMATIC <16777216c@gmail.com> | 2022-09-06 20:10:12 +0000 |
---|---|---|
committer | AUTOMATIC <16777216c@gmail.com> | 2022-09-06 20:10:12 +0000 |
commit | 7ce7fb01e035a7ba8ca9cb35784cd75cca3d99fd (patch) | |
tree | c5b60ee07477249577260b421d52de9840dfc1ef /webui.py | |
parent | 0bfa0d4381c65077ffa7bd014040813dbad84fed (diff) | |
download | stable-diffusion-webui-gfx803-7ce7fb01e035a7ba8ca9cb35784cd75cca3d99fd.tar.gz stable-diffusion-webui-gfx803-7ce7fb01e035a7ba8ca9cb35784cd75cca3d99fd.tar.bz2 stable-diffusion-webui-gfx803-7ce7fb01e035a7ba8ca9cb35784cd75cca3d99fd.zip |
fix for live progress breaking lowvram and medvram optimizations
Diffstat (limited to 'webui.py')
-rw-r--r-- | webui.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -127,7 +127,7 @@ def wrap_gradio_gpu_call(func): shared.state.job_no = 0
shared.state.current_latent = None
shared.state.current_image = None
- shared.state.current_progress_index = 0
+ shared.state.current_image_sampling_step = 0
with queue_lock:
res = func(*args, **kwargs)
|