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

Update modules/Device/Device.py

Browse files
Files changed (1) hide show
  1. modules/Device/Device.py +2 -2
modules/Device/Device.py CHANGED
@@ -89,9 +89,9 @@ def get_torch_device() -> torch.device:
89
  if is_intel_xpu():
90
  return torch.device("xpu", torch.xpu.current_device())
91
  else:
92
- try:
93
  return torch.device(torch.cuda.current_device())
94
- except AssertionError:
95
  return torch.device("cpu")
96
 
97
 
 
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")
96
 
97