Skip to content

Commit

Permalink
Fixing bug multi-gpu training (#6299)
Browse files Browse the repository at this point in the history
* Fixing bug multi-gpu training

This solves this issue: #6297 (comment)

* Update torch_utils.py for pep8
  • Loading branch information
Henry committed Jan 14, 2022
1 parent e7bf382 commit a1a9c68
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion utils/torch_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,8 @@ def select_device(device='', batch_size=0, newline=True):
os.environ['CUDA_VISIBLE_DEVICES'] = '-1' # force torch.cuda.is_available() = False
elif device: # non-cpu device requested
assert torch.cuda.is_available(), 'CUDA unavailable' # check CUDA is available
assert torch.cuda.device_count() > int(device), f'invalid CUDA device {device} requested' # check index
device_list = [int(val) for val in device.replace(',', '')]
assert all([torch.cuda.device_count() > element for element in device_list]), f'invalid CUDA device {device} requested' # check index
os.environ['CUDA_VISIBLE_DEVICES'] = device # set environment variable (must be after asserts)

cuda = not cpu and torch.cuda.is_available()
Expand Down

0 comments on commit a1a9c68

Please sign in to comment.