Make the "no GPU has been detected" message more descriptive

This commit is contained in:
oobabooga 2023-03-15 19:31:27 -03:00
parent 67d62475dc
commit 66256ac1dd

View File

@ -98,7 +98,7 @@ def load_model(model_name):
command = "AutoModelForCausalLM.from_pretrained"
params = ["low_cpu_mem_usage=True"]
if not shared.args.cpu and not torch.cuda.is_available():
print("Warning: no GPU has been detected.\nFalling back to CPU mode.\n")
print("Warning: torch.cuda.is_available() returned False.\nThis means that no GPU has been detected.\nFalling back to CPU mode.\n")
shared.args.cpu = True
if shared.args.cpu: