Signed-off-by: Vladimir Mandic <mandic00@live.com>
This commit is contained in:
Vladimir Mandic
2026-07-08 09:50:26 +02:00
parent 9a2c76ade3
commit cfd31599b4
4 changed files with 9 additions and 2 deletions
+6
View File
@@ -1,5 +1,11 @@
# Change Log for SD.Next
## Update for 2026-07-08
- **Fixes**
- lora: fix lora text-encoder loader
- amd: hipBLASLt improved detection, thanks @0xDELUXA
## Update for 2026-07-07
### Highlights for 2026-07-07
+1
View File
@@ -25,6 +25,7 @@
- Auto handle scheduler `prediction_type`
- Cache models in memory
- JSON image metadata
- Expand custom VAE support
- Refactor: remove obsolete code:
- Remove `directml`
- Remove `olive-ai`
+1 -1
View File
@@ -60,7 +60,7 @@ def network_activate(include=None, exclude=None):
pbar.update(task, advance=1)
continue
backup_size += network_backup_weights(module, network_layer_name, component_wanted)
if component_wanted == ():
if not component_wanted:
weights_backup = getattr(module, "network_weights_backup", None)
if weights_backup is None or isinstance(weights_backup, bool): # fuse mode has no tensor backup, restore stays with network_deactivate
if task is not None: