mirror of
https://github.com/saymrwulf/pytorch.git
synced 2026-05-14 20:57:59 +00:00
Summary: Pull Request resolved: https://github.com/pytorch/pytorch/pull/39483 I fixed all of the new errors that occurred because of the upgrade. Signed-off-by: Edward Z. Yang <ezyang@fb.com> Test Plan: Imported from OSS Differential Revision: D21884575 Pulled By: ezyang fbshipit-source-id: 45c8e1f1ecb410c8d7c46dd3922ad70e982a0685
35 lines
1.3 KiB
Python
35 lines
1.3 KiB
Python
import torch
|
|
import torch._six
|
|
|
|
|
|
def _get_device_index(device, optional=False):
|
|
r"""Gets the device index from :attr:`device`, which can be a torch.device
|
|
object, a Python integer, or ``None``.
|
|
|
|
If :attr:`device` is a torch.device object, returns the device index if it
|
|
is a CUDA device. Note that for a CUDA device without a specified index,
|
|
i.e., ``torch.device('cuda')``, this will return the current default CUDA
|
|
device if :attr:`optional` is ``True``.
|
|
|
|
If :attr:`device` is a Python integer, it is returned as is.
|
|
|
|
If :attr:`device` is ``None``, this will return the current default CUDA
|
|
device if :attr:`optional` is ``True``.
|
|
"""
|
|
if isinstance(device, torch._six.string_classes):
|
|
device = torch.device(device)
|
|
if isinstance(device, torch.device):
|
|
dev_type = device.type
|
|
if device.type != 'cuda':
|
|
raise ValueError('Expected a cuda device, but got: {}'.format(device))
|
|
device_idx = device.index
|
|
else:
|
|
device_idx = device
|
|
if device_idx is None:
|
|
if optional:
|
|
# default cuda device index
|
|
return torch.cuda.current_device()
|
|
else:
|
|
raise ValueError('Expected a cuda device with a specified index '
|
|
'or an integer, but got: {}'.format(device))
|
|
return device_idx
|