From 1dc22650c2e3e5eec9a98050fee609348aad788d Mon Sep 17 00:00:00 2001 From: Vladimir Mandic Date: Sat, 30 Aug 2025 08:48:33 -0400 Subject: [PATCH] remove samplers filtering Signed-off-by: Vladimir Mandic --- CHANGELOG.md | 3 ++- modules/sd_samplers.py | 7 +------ wiki | 2 +- 3 files changed, 4 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0602b58cc..c0b270e54 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Change Log for SD.Next -## Update for 2025-08-29 +## Update for 2025-08-30 - **Models** - **Chroma** final versions: [Chroma1-HD](https://huggingface.co/lodestones/Chroma1-HD), [Chroma1-Base](https://huggingface.co/lodestones/Chroma1-Base) and [Chroma1-Flash](https://huggingface.co/lodestones/Chroma1-Flash) @@ -35,6 +35,7 @@ - add quantized matmul support for all quantization types and group sizes - **Fixes** - normalize path hanlding when deleting images + - remove samplers filtering - fix hidden model tags in networks display - fix networks reference models display on windows - fix handling of pre-quantized `flux` models diff --git a/modules/sd_samplers.py b/modules/sd_samplers.py index 644e9dd16..fac58a732 100644 --- a/modules/sd_samplers.py +++ b/modules/sd_samplers.py @@ -48,11 +48,6 @@ def find_sampler_config(name): return config -def visible_sampler_names(): - visible_samplers = [x for x in all_samplers if x.name in shared.opts.show_samplers] if len(shared.opts.show_samplers) > 0 else all_samplers - return visible_samplers - - def restore_default(model): if model is None: return None @@ -131,7 +126,7 @@ def create_sampler(name, model): def set_samplers(): global samplers # pylint: disable=global-statement global samplers_for_img2img # pylint: disable=global-statement - samplers = visible_sampler_names() + samplers = all_samplers # samplers_for_img2img = [x for x in samplers if x.name != "PLMS"] samplers_for_img2img = samplers samplers_map.clear() diff --git a/wiki b/wiki index 7df61988a..e6232aebe 160000 --- a/wiki +++ b/wiki @@ -1 +1 @@ -Subproject commit 7df61988ae7e528f5f7909491d89e519be9b49db +Subproject commit e6232aebeafafe3b0e8147b0379f8936a514fbdf