Use the CPU if no GPU is detected
This commit is contained in:
parent
337290777b
commit
5d3f15b915
1 changed files with 3 additions and 0 deletions
|
@ -120,6 +120,9 @@ def load_model(model_name):
|
|||
else:
|
||||
command = "AutoModelForCausalLM.from_pretrained"
|
||||
params = ["low_cpu_mem_usage=True"]
|
||||
if not args.cpu and not torch.cuda.is_available():
|
||||
print("Warning: no GPU has been detected.\nFalling back to CPU mode.\n")
|
||||
args.cpu = True
|
||||
|
||||
if args.cpu:
|
||||
params.append("low_cpu_mem_usage=True")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue