enable offload pre-forward by default

Signed-off-by: Vladimir Mandic <mandic00@live.com>
This commit is contained in:
Vladimir Mandic
2025-08-23 08:51:45 -04:00
parent d997ef95dd
commit 9c0d9bd766
3 changed files with 4 additions and 2 deletions
+2
View File
@@ -2,6 +2,8 @@
## Update for 2025-08-23
- **Core**
- enable offload during pre-forward by default
- **UI**
- improved image scaling in img2img and control interfaces
- **Fixes**
+1 -1
View File
@@ -167,7 +167,7 @@ options_templates.update(options_section(('model_options', "Model Options"), {
options_templates.update(options_section(('offload', "Model Offloading"), {
"offload_sep": OptionInfo("<h2>Model Offloading</h2>", "", gr.HTML),
"diffusers_offload_mode": OptionInfo(startup_offload_mode, "Model offload mode", gr.Radio, {"choices": ['none', 'balanced', 'group', 'model', 'sequential']}),
"diffusers_offload_pre": OptionInfo(False, "Offload during pre-forward"),
"diffusers_offload_pre": OptionInfo(True, "Offload during pre-forward"),
"diffusers_offload_nonblocking": OptionInfo(False, "Non-blocking move operations"),
"diffusers_offload_min_gpu_memory": OptionInfo(startup_offload_min_gpu, "Balanced offload GPU low watermark", gr.Slider, {"minimum": 0, "maximum": 1, "step": 0.01 }),
"diffusers_offload_max_gpu_memory": OptionInfo(startup_offload_max_gpu, "Balanced offload GPU high watermark", gr.Slider, {"minimum": 0.1, "maximum": 1, "step": 0.01 }),
+1 -1
Submodule wiki updated: e7506467c0...fac3f227f0