Merge pull request #3675 from vladmandic/dev

refresh master
This commit is contained in:
Vladimir Mandic
2024-12-31 16:02:35 -05:00
committed by GitHub
2 changed files with 6 additions and 6 deletions
+5 -5
View File
@@ -2,12 +2,15 @@
## Update for 2024-12-31
NYE refresh release with quite a few optimizatios and bug fixes...
NYE refresh release with quite a few optimizatios and bug fixes...
Commit hash: `master: #dcfc9f3` `dev: #935cac6`
- **LoRA**:
- LoRA load/apply/unapply methods have been changed in 12/2024 Xmass release and further tuned in this release
- for details on available methods, see <https://github.com/vladmandic/automatic/wiki/Lora#lora-loader>
- **Sana** support
- quantized models support
- fuse support with on-demand apply/unapply
- add fuse support with on-demand apply/unapply (new default)
- add legacy option in *settings -> networks*
- **HunyuanVideo**:
- optimizations: full offload, quantization and tiling support
@@ -33,9 +36,6 @@ NYE refresh release with quite a few optimizatios and bug fixes...
- **OpenVINO**:
- disable re-compile on resolution change
- fix shape mismatch on resolution change
- **LoRA**:
- LoRA load/apply/unapply methods have been changed in 12/2024 Xmass release and further tuned in this release
- for details on available methods, see <https://github.com/vladmandic/automatic/wiki/Lora#lora-loader>
- **Fixes**:
- flux pipeline switches: txt/img/inpaint
- flux custom unet loader for bnb
+1 -1
View File
@@ -130,7 +130,7 @@ class ExtraNetworkLora(extra_networks.ExtraNetwork):
key = f'{",".join(include)}:{",".join(exclude)}'
loaded = sd_model.loaded_loras.get(key, [])
# shared.log.trace(f'Load network: type=LoRA key="{key}" requested={requested} loaded={loaded}')
if len(requested) != len(loaded):
if (len(requested) == 0) or (len(requested) != len(loaded)):
sd_model.loaded_loras[key] = requested
return True
for r, l in zip(requested, loaded):