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
commit cf04738594
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -96,7 +96,7 @@ def setConfig(config):
has_first_cuda_device = False
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
break
if len(gpu_devices) > 0 and not has_first_cuda_device: