mirror of
https://github.com/AUTOMATIC1111/stable-diffusion-webui.git
synced 2025-04-04 19:49:01 +08:00
batch_size does not affect job count
This commit is contained in:
parent
a7aa00d46a
commit
3d898044e5
@ -246,7 +246,7 @@ class Script(scripts.Script):
|
|||||||
batch_count = p.n_iter
|
batch_count = p.n_iter
|
||||||
batch_size = p.batch_size
|
batch_size = p.batch_size
|
||||||
p.n_iter = 1
|
p.n_iter = 1
|
||||||
state.job_count = batch_count * batch_size * ((1 if left > 0 else 0) + (1 if right > 0 else 0) + (1 if up > 0 else 0) + (1 if down > 0 else 0))
|
state.job_count = batch_count * ((1 if left > 0 else 0) + (1 if right > 0 else 0) + (1 if up > 0 else 0) + (1 if down > 0 else 0))
|
||||||
all_processed_images = []
|
all_processed_images = []
|
||||||
|
|
||||||
for i in range(batch_count):
|
for i in range(batch_count):
|
||||||
|
Loading…
x
Reference in New Issue
Block a user