This commit is contained in:
hiyouga 2023-12-02 00:37:53 +08:00
parent 6e7af11b98
commit b69763ff92
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ def dispatch_model(model: "PreTrainedModel") -> "PreTrainedModel":
if getattr(model, "quantization_method", None): # already set on current device
return model
if torch.cuda.device_count() > 1:
if torch.cuda.device_count() > 1 and getattr(model.config, "model_type", None) != "chatglm":
from accelerate import dispatch_model
from accelerate.utils import infer_auto_device_map, get_balanced_memory