Skip to content

Commit

Permalink
Cleanup some mac related code.
Browse files Browse the repository at this point in the history
  • Loading branch information
comfyanonymous committed Dec 25, 2024
1 parent b486885 commit 19a64d6
Showing 1 changed file with 2 additions and 10 deletions.
12 changes: 2 additions & 10 deletions comfy/model_management.py
Original file line number Diff line number Diff line change
Expand Up @@ -969,17 +969,13 @@ def should_use_fp16(device=None, model_params=0, prioritize_performance=True, ma
if FORCE_FP16:
return True

if device is not None:
if is_device_mps(device):
return True

if FORCE_FP32:
return False

if directml_enabled:
return False

if mps_mode():
if (device is not None and is_device_mps(device)) or mps_mode():
return True

if cpu_mode():
Expand Down Expand Up @@ -1028,17 +1024,13 @@ def should_use_bf16(device=None, model_params=0, prioritize_performance=True, ma
if is_device_cpu(device): #TODO ? bf16 works on CPU but is extremely slow
return False

if device is not None:
if is_device_mps(device):
return True

if FORCE_FP32:
return False

if directml_enabled:
return False

if mps_mode():
if (device is not None and is_device_mps(device)) or mps_mode():
if mac_version() < (14,):
return False
return True
Expand Down

0 comments on commit 19a64d6

Please sign in to comment.