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
What is your question?
In the CUTE GEMM Example, the accumulation buffer is fp16. However, I noticed a rather annoying downstream effect: due to rounding errors, the accumulation will silently ignore small deltas if the exponent is large (e.g. 2048 + 1 = 2048, due to precision issues).
I have two (related) questions:
Is there a way to error or warn if the accumulator is silently dropping bits?
Is there a way (aside from setting to fp32 or bf16) to avoid this issue?
The text was updated successfully, but these errors were encountered:
What is your question?
In the CUTE GEMM Example, the accumulation buffer is fp16. However, I noticed a rather annoying downstream effect: due to rounding errors, the accumulation will silently ignore small deltas if the exponent is large (e.g. 2048 + 1 = 2048, due to precision issues).
I have two (related) questions:
The text was updated successfully, but these errors were encountered: