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
This got caught by RustPython's regression tests that we port from CPython. If this is expected/acceptable behavior, that's fine, since from_f64_const works anyways.
Here's the failing test cases adapted into rust (the original is here; the first one is line 848 and the second line 890). For this, the from_f64_const result is what the python regression tests were expecting, and what worked in half 1.x (without use-intrinsics enabled, at least).
// from the round-to-even section of the test caselet x = 2.0f64.powi(-14) - 2.0f64.powi(-25) - 2.0f64.powi(-65);// 0x3f0ffbfffffffffc (0.0006100535392761228)
f16::from_f64_const(x);// 0x03ff (0.00006097555)
f16::from_f64(x);// 0x0400 (0.000061035156)// from the double rounding section of the test case// comment from the cpython test case: should be 2047, if double-rounded 64>32>16, becomes 2048let x = 0x1ffdffffffu64asf64*2f64.powi(-26);// 0x409ffdffffff0000 (2047.4999999850988)
f16::from_f64_const(x);// 0x67ff (2047)
f16::from_f64(x);// 0x6800 (2048)
The text was updated successfully, but these errors were encountered:
This got caught by RustPython's regression tests that we port from CPython. If this is expected/acceptable behavior, that's fine, since
from_f64_const
works anyways.Here's the failing test cases adapted into rust (the original is here; the first one is line 848 and the second line 890). For this, the
from_f64_const
result is what the python regression tests were expecting, and what worked inhalf 1.x
(withoutuse-intrinsics
enabled, at least).The text was updated successfully, but these errors were encountered: