Skip to content

Commit

Permalink
Exclude GeForce MX series from FP16
Browse files Browse the repository at this point in the history
  • Loading branch information
deiteris committed Aug 6, 2024
1 parent f5030af commit ca29870
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/voice_changer/common/deviceManager/DeviceManager.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ def is_fp16_available(self):
# All Radeon GPUs starting from GCN 1 (Radeon HD 7000 series and later) reportedly have 2:1 FP16 performance
# Intel UHD Graphics 600 and later reportedly have 2:1 FP16 performance
# All Intel Arc GPUs reportedly have 2:1 FP16 performance or better
ignored_nvidia_gpu = re.search(r'(GTX|RTX|TESLA|QUADRO) (V100|[789]\d{2}|1[06]\d{2}|P40|TITAN)', device_name_uppercase)
ignored_nvidia_gpu = re.search(r'((GTX|RTX|TESLA|QUADRO) (V100|[789]\d{2}|1[06]\d{2}|P40|TITAN)|MX\d{3})', device_name_uppercase)
if ignored_nvidia_gpu is not None:
return False

Expand Down

0 comments on commit ca29870

Please sign in to comment.