Aatricks commited on
Commit
2e3afbc
·
verified ·
1 Parent(s): c26c36c

Upload folder using huggingface_hub

Browse files
Files changed (1) hide show
  1. modules/Device/Device.py +1 -1
modules/Device/Device.py CHANGED
@@ -89,7 +89,7 @@ def get_torch_device() -> torch.device:
89
  if is_intel_xpu():
90
  return torch.device("xpu", torch.xpu.current_device())
91
  else:
92
- if is_nvidia():
93
  return torch.device(torch.cuda.current_device())
94
  else:
95
  return torch.device("cpu")
 
89
  if is_intel_xpu():
90
  return torch.device("xpu", torch.xpu.current_device())
91
  else:
92
+ if torch.cuda.is_available():
93
  return torch.device(torch.cuda.current_device())
94
  else:
95
  return torch.device("cpu")