add a message about unsupported samplers

This commit is contained in:
AUTOMATIC1111
2023-07-14 21:41:21 +03:00
parent ac2d47ff4c
commit 5dee0fa1f8
2 changed files with 6 additions and 3 deletions

View File

@@ -28,6 +28,9 @@ def create_sampler(name, model):
assert config is not None, f'bad sampler name: {name}'
if model.is_sdxl and config.options.get("no_sdxl", False):
raise Exception(f"Sampler {config.name} is not supported for SDXL")
sampler = config.constructor(model)
sampler.config = config