mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2025-09-13 04:55:53 +00:00
Fix overflow issue with inplace softmax.
This commit is contained in:
@@ -158,6 +158,7 @@ def _get_attention_scores_no_kv_chunking(
|
|||||||
del attn_scores
|
del attn_scores
|
||||||
except OOM_EXCEPTION:
|
except OOM_EXCEPTION:
|
||||||
print("ran out of memory while running softmax in _get_attention_scores_no_kv_chunking, trying slower in place softmax instead")
|
print("ran out of memory while running softmax in _get_attention_scores_no_kv_chunking, trying slower in place softmax instead")
|
||||||
|
attn_scores -= attn_scores.max(dim=-1, keepdim=True).values
|
||||||
torch.exp(attn_scores, out=attn_scores)
|
torch.exp(attn_scores, out=attn_scores)
|
||||||
summed = torch.sum(attn_scores, dim=-1, keepdim=True)
|
summed = torch.sum(attn_scores, dim=-1, keepdim=True)
|
||||||
attn_scores /= summed
|
attn_scores /= summed
|
||||||
|
Reference in New Issue
Block a user