aboutsummaryrefslogtreecommitdiffstats
path: root/modules/sd_samplers.py
diff options
context:
space:
mode:
authorcontinue-revolution <continuerevolution@gmail.com>2024-01-08 12:43:39 +0000
committercontinue-revolution <continuerevolution@gmail.com>2024-01-08 12:43:39 +0000
commit8e292373ec5c54493ce48af7c76f5eaa79dc8abd (patch)
tree226a39a4d3eb16e6527a26fb55c3825149c3a791 /modules/sd_samplers.py
parent6869d95890849c9b209bb66774539bfdf870df2c (diff)
downloadstable-diffusion-webui-gfx803-8e292373ec5c54493ce48af7c76f5eaa79dc8abd.tar.gz
stable-diffusion-webui-gfx803-8e292373ec5c54493ce48af7c76f5eaa79dc8abd.tar.bz2
stable-diffusion-webui-gfx803-8e292373ec5c54493ce48af7c76f5eaa79dc8abd.zip
lcm sampler
Diffstat (limited to 'modules/sd_samplers.py')
-rw-r--r--modules/sd_samplers.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/sd_samplers.py b/modules/sd_samplers.py
index 45faae62..a58528a0 100644
--- a/modules/sd_samplers.py
+++ b/modules/sd_samplers.py
@@ -1,4 +1,4 @@
-from modules import sd_samplers_kdiffusion, sd_samplers_timesteps, shared
+from modules import sd_samplers_kdiffusion, sd_samplers_timesteps, sd_samplers_lcm, shared
# imports for functions that previously were here and are used by other modules
from modules.sd_samplers_common import samples_to_image_grid, sample_to_image # noqa: F401
@@ -6,6 +6,7 @@ from modules.sd_samplers_common import samples_to_image_grid, sample_to_image #
all_samplers = [
*sd_samplers_kdiffusion.samplers_data_k_diffusion,
*sd_samplers_timesteps.samplers_data_timesteps,
+ *sd_samplers_lcm.samplers_data_lcm,
]
all_samplers_map = {x.name: x for x in all_samplers}