Fix int8 mm being skipped on offloaded lora weights. (#14669)

This commit is contained in:
comfyanonymous
2026-06-28 20:52:36 -07:00
committed by GitHub
parent f19735759e
commit 79c555ce6b

View File

@@ -1216,7 +1216,7 @@ def mixed_precision_ops(quant_config={}, compute_dtype=torch.bfloat16, full_prec
bias_dtype=input.dtype,
offloadable=True,
compute_dtype=compute_dtype,
want_requant=want_requant,
want_requant=True,
)
weight = weight.to(dtype=input.dtype)
else: