Skip to content

Commit

Permalink
Assume the mac black image bug won't be fixed before v16.
Browse files Browse the repository at this point in the history
  • Loading branch information
comfyanonymous committed Feb 22, 2025
1 parent a6deca6 commit 072db3b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion comfy/model_management.py
Original file line number Diff line number Diff line change
Expand Up @@ -943,7 +943,7 @@ def force_upcast_attention_dtype():
upcast = args.force_upcast_attention

macos_version = mac_version()
if macos_version is not None and ((14, 5) <= macos_version <= (15, 3)): # black image bug on recent versions of macOS
if macos_version is not None and ((14, 5) <= macos_version < (16,)): # black image bug on recent versions of macOS
upcast = True

if upcast:
Expand Down

0 comments on commit 072db3b

Please sign in to comment.