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
Auto merge of #3535 - RalfJung:host-float, r=RalfJung
update host-float comments
Turns out most of these do not have guaranteed precision anyway so it's fine to use host floats (see rust-lang/rust#121793 and rust-lang/rust#118217). The exception are sqrt and mul_add, tracked at #3534 and #2995.
// (see https://docs.microsoft.com/en-us/cpp/c-runtime-library/reference/floating-point-primitives?view=vs-2019)
764
-
// FIXME: Using host floats.
764
+
// Using host floats (but it's fine, these operations do not have guaranteed precision).
// (see https://docs.microsoft.com/en-us/cpp/c-runtime-library/reference/floating-point-primitives?view=vs-2019)
821
-
// FIXME: Using host floats.
821
+
// Using host floats (but it's fine, these operations do not have guaranteed precision).
0 commit comments