Replace bare except clauses with specific exception types in:
- comfy/sd.py: VAE.spacial_compression_decode/encode and temporal_compression_decode
- comfy/sd1_clip.py: token_weights and load_embed functions
- comfy/weight_adapter/lora.py: LoRAAdapter.load
This ensures that:
- Only relevant exceptions are caught (not SystemExit, KeyboardInterrupt)
- Debugging is easier as unexpected errors will propagate
- Follows Python best practices for exception handling
* lora: add weight shape calculations.
This lets the loader know if a lora will change the shape of a weight
so it can take appropriate action.
* MPDynamic: force load flux img_in weight
This weight is a bit special, in that the lora changes its geometry.
This is rather unique, not handled by existing estimate and doesn't
work for either offloading or dynamic_vram.
Fix for dynamic_vram as a special case. Ideally we can fully precalculate
these lora geometry changes at load time, but just get these models
working first.