mirror of
https://github.com/vladmandic/automatic
synced 2026-09-19 01:04:32 +02:00
+2
-1
@@ -1,6 +1,6 @@
|
||||
# Change Log for SD.Next
|
||||
|
||||
## Update for 2025-05-05
|
||||
## Update for 2025-05-06
|
||||
|
||||
- **Features**
|
||||
- [FramePack](https://vladmandic.github.io/sdnext-docs/FramePack)
|
||||
@@ -36,6 +36,7 @@
|
||||
- Control: t2i-adapter workflow
|
||||
- Control: xs-controlnet workflow
|
||||
- Control: lllite-workflow
|
||||
- Control: refiner workflow with multiple control elements
|
||||
|
||||
## Highlights for 2025-04-28
|
||||
|
||||
|
||||
@@ -54,7 +54,7 @@ def restore_state(p: processing.StableDiffusionProcessing):
|
||||
|
||||
def process_base(p: processing.StableDiffusionProcessing):
|
||||
txt2img = is_txt2img()
|
||||
use_refiner_start = txt2img and is_refiner_enabled(p) and not p.is_hr_pass and p.refiner_start > 0 and p.refiner_start < 1
|
||||
use_refiner_start = is_refiner_enabled(p) and (not p.is_hr_pass)
|
||||
use_denoise_start = not txt2img and p.refiner_start > 0 and p.refiner_start < 1
|
||||
|
||||
shared.sd_model = update_pipeline(shared.sd_model, p)
|
||||
|
||||
@@ -454,14 +454,15 @@ def calculate_base_steps(p, use_denoise_start, use_refiner_start):
|
||||
if len(getattr(p, 'timesteps', [])) > 0:
|
||||
return None
|
||||
if not is_txt2img():
|
||||
if use_denoise_start and shared.sd_model_type == 'sdxl':
|
||||
cls = shared.sd_model.__class__.__name__
|
||||
if cls in sd_models.i2i_pipes:
|
||||
steps = p.steps
|
||||
elif 'Flex' in cls:
|
||||
steps = p.steps
|
||||
elif 'HiDreamImageEditingPipeline' in cls:
|
||||
steps = p.steps
|
||||
elif use_denoise_start and (shared.sd_model_type == 'sdxl'):
|
||||
steps = p.steps // (1 - p.refiner_start)
|
||||
elif 'Flex' in shared.sd_model.__class__.__name__:
|
||||
steps = p.steps
|
||||
elif 'HiDreamImageEditingPipeline' in shared.sd_model.__class__.__name__:
|
||||
steps = p.steps
|
||||
elif shared.sd_model.__class__.__name__ in sd_models.i2i_pipes:
|
||||
steps = p.steps
|
||||
elif p.denoising_strength > 0:
|
||||
steps = (p.steps // p.denoising_strength) + 1
|
||||
else:
|
||||
|
||||
Reference in New Issue
Block a user