diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2023-08-08 21:49:47 +0300 |
---|---|---|
committer | AUTOMATIC1111 <16777216c@gmail.com> | 2023-08-08 21:49:47 +0300 |
commit | 54c3e5c913b17622bed4ff4d03df488b80611e21 (patch) | |
tree | 94f91922b3d0e6142837f6873ac9c12ba79d3f61 /modules/processing.py | |
parent | 5a0db84b6c7322082c7532df11a29a95a59a612b (diff) | |
parent | 70c63c1208d33bf02e15c4e310bac83f12ee8625 (diff) |
Merge branch 'dev' into refiner
Diffstat (limited to 'modules/processing.py')
-rw-r--r-- | modules/processing.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/modules/processing.py b/modules/processing.py index ec66fd8e..b635cc74 100644 --- a/modules/processing.py +++ b/modules/processing.py @@ -1119,9 +1119,6 @@ class StableDiffusionProcessingTxt2Img(StableDiffusionProcessing): img2img_sampler_name = self.hr_sampler_name or self.sampler_name
- if self.sampler_name in ['PLMS', 'UniPC']: # PLMS/UniPC do not support img2img so we just silently switch to DDIM
- img2img_sampler_name = 'DDIM'
-
self.sampler = sd_samplers.create_sampler(img2img_sampler_name, self.sd_model)
if self.latent_scale_mode is not None:
|