aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrandom_thoughtss <random_thoughtss@proton.me>2022-10-30 07:35:40 +0000
committerrandom_thoughtss <random_thoughtss@proton.me>2022-10-30 07:35:40 +0000
commit71571e3f055237d71ba2d47756846ad1d73be00c (patch)
tree41ad916a8b9269122ba0cffdc689b4b3c8538bc0
parent15468c993974ed30fb204792c9598dfa62088bbb (diff)
downloadstable-diffusion-webui-gfx803-71571e3f055237d71ba2d47756846ad1d73be00c.tar.gz
stable-diffusion-webui-gfx803-71571e3f055237d71ba2d47756846ad1d73be00c.tar.bz2
stable-diffusion-webui-gfx803-71571e3f055237d71ba2d47756846ad1d73be00c.zip
Replaced master branch fix with updated fix.
-rw-r--r--modules/processing.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/modules/processing.py b/modules/processing.py
index 3dd44d3a..512c484f 100644
--- a/modules/processing.py
+++ b/modules/processing.py
@@ -688,8 +688,6 @@ class StableDiffusionProcessingTxt2Img(StableDiffusionProcessing):
noise = create_random_tensors(samples.shape[1:], seeds=seeds, subseeds=subseeds, subseed_strength=subseed_strength, seed_resize_from_h=self.seed_resize_from_h, seed_resize_from_w=self.seed_resize_from_w, p=self)
- image_conditioning = self.txt2img_image_conditioning(x)
-
# GC now before running the next img2img to prevent running out of memory
x = None
devices.torch_gc()