Merge pull request #420 from madrang/beta

Missing .lower() cause CUDA:0 to fail check where cuda:0 works.
This commit is contained in:
cmdr2
2022-10-29 15:01:13 +05:30
committed by GitHub

View File

@ -96,7 +96,7 @@ def setConfig(config):
has_first_cuda_device = False has_first_cuda_device = False
for device in gpu_devices: for device in gpu_devices:
if not task_manager.is_first_cuda_device(device): continue if not task_manager.is_first_cuda_device(device.lower()): continue
has_first_cuda_device = True has_first_cuda_device = True
break break
if len(gpu_devices) > 0 and not has_first_cuda_device: if len(gpu_devices) > 0 and not has_first_cuda_device: