mirror of
https://github.com/oobabooga/text-generation-webui.git
synced 2024-11-25 17:29:22 +01:00
add multi-gpu support for 4bit gptq LLaMA
This commit is contained in:
parent
1d7e893fa1
commit
ab47044459
@ -110,7 +110,18 @@ def load_model(model_name):
|
|||||||
exit()
|
exit()
|
||||||
|
|
||||||
model = load_quant(path_to_model, Path(f"models/{pt_model}"), 4)
|
model = load_quant(path_to_model, Path(f"models/{pt_model}"), 4)
|
||||||
model = model.to(torch.device('cuda:0'))
|
|
||||||
|
if shared.args.gpu_memory:
|
||||||
|
max_memory = {}
|
||||||
|
for i in range(len(shared.args.gpu_memory)):
|
||||||
|
max_memory[i] = f"{shared.args.gpu_memory[i]}GiB"
|
||||||
|
max_memory['cpu'] = f"{shared.args.cpu_memory or '99'}GiB"
|
||||||
|
|
||||||
|
import accelerate
|
||||||
|
device_map = accelerate.infer_auto_device_map(model, max_memory=max_memory)
|
||||||
|
model = accelerate.dispatch_model(model, device_map=device_map)
|
||||||
|
else:
|
||||||
|
model = model.to(torch.device('cuda:0'))
|
||||||
|
|
||||||
# Custom
|
# Custom
|
||||||
else:
|
else:
|
||||||
|
Loading…
Reference in New Issue
Block a user