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
It seems that the library is using the gcc/clang option -ffast-math somewhere, which causes the warning UserWarning: The value of the smallest subnormal for <class 'numpy.float32'> type is zero to appear sometimes. See this article for more info.
Might be worth looking into because messing with subnormals means changing floating point behavior and that's no good for precise maths. Could cause difficult-to-retrace issues in some circumstances.
The text was updated successfully, but these errors were encountered:
It seems that the library is using the gcc/clang option
-ffast-math
somewhere, which causes the warningUserWarning: The value of the smallest subnormal for <class 'numpy.float32'> type is zero
to appear sometimes. See this article for more info.Might be worth looking into because messing with subnormals means changing floating point behavior and that's no good for precise maths. Could cause difficult-to-retrace issues in some circumstances.
The text was updated successfully, but these errors were encountered: