mirror of
https://github.com/easydiffusion/easydiffusion.git
synced 2024-12-23 23:49:11 +01:00
Catch 16xx cards without the NVIDIA name in them
This commit is contained in:
parent
1d4b34c0dd
commit
fec21f1208
@ -60,7 +60,7 @@ try:
|
||||
gpu_name = torch.cuda.get_device_name(torch.cuda.current_device())
|
||||
print('detected: ', gpu_name)
|
||||
has_valid_gpu = True
|
||||
force_full_precision = ('nvidia' in gpu_name.lower()) and ('1660' in gpu_name or ' 1650' in gpu_name) # otherwise these NVIDIA cards create green images
|
||||
force_full_precision = ('nvidia' in gpu_name.lower() or 'geforce' in gpu_name.lower()) and (' 1660' in gpu_name or ' 1650' in gpu_name) # otherwise these NVIDIA cards create green images
|
||||
if force_full_precision:
|
||||
print('forcing full precision on NVIDIA 16xx cards, to avoid green images. GPU detected: ', gpu_name)
|
||||
except:
|
||||
|
Loading…
Reference in New Issue
Block a user