You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
in csrc/flash_attn/src/utils.h tensor(i) = cutlass::fast_tanh(tensor(i) * softcap);
Should it be rewritten as tensor(i) = cutlass::fast_tanh(tensor(i)) * softcap;?
The text was updated successfully, but these errors were encountered:
in csrc/flash_attn/src/utils.h
tensor(i) = cutlass::fast_tanh(tensor(i) * softcap);
Should it be rewritten as
tensor(i) = cutlass::fast_tanh(tensor(i)) * softcap;
?The text was updated successfully, but these errors were encountered: