mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2026-01-11 23:00:51 +08:00
Be less strict when loading mixed ops weights. (#11769)
This commit is contained in:
parent
ec0a832acb
commit
bd0e6825e8
@ -546,7 +546,8 @@ def mixed_precision_ops(quant_config={}, compute_dtype=torch.bfloat16, full_prec
|
|||||||
weight_key = f"{prefix}weight"
|
weight_key = f"{prefix}weight"
|
||||||
weight = state_dict.pop(weight_key, None)
|
weight = state_dict.pop(weight_key, None)
|
||||||
if weight is None:
|
if weight is None:
|
||||||
raise ValueError(f"Missing weight for layer {layer_name}")
|
logging.warning(f"Missing weight for layer {layer_name}")
|
||||||
|
return
|
||||||
|
|
||||||
manually_loaded_keys = [weight_key]
|
manually_loaded_keys = [weight_key]
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user