-
Notifications
You must be signed in to change notification settings - Fork 223
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Rounding error in __mulsf3
#616
Comments
Hm, I can't reproduce this in C |
Also a problem with f64: |
It definitely seems like a library problem, IEEE734 should produce an exact result for multiply assuming round-to-nearest. |
This is probably related to the rounding issue that I thought was limited to f128 llvm/llvm-project#91840 |
multf3 too, on x86, I am surprised this didn't come up on fuzzing since it seems like the system functions do the right thing here. #![feature(f128)]
use rustc_apfloat::ieee::Quad;
use rustc_apfloat::Float;
extern "C" {
fn __multf3(a: f128, b: f128) -> f128;
}
#[test]
fn foo() {
let a = f128::from_bits(0x03a00000000000000000000000005400);
let b = f128::from_bits(0x3c2caaaaaaaaaa00000000002aa80002);
let aq = Quad::from_bits(a.to_bits());
let bq = Quad::from_bits(b.to_bits());
let res_llvm = a * b;
let res_crate = compiler_builtins::float::mul::__multf3(a, b);
let res_sys = unsafe { __multf3(a, b) };
println!("llvm {:?}", res_llvm);
println!("crate {:?}", res_crate);
println!("sys {:?}", res_sys);
println!("ap {:#034x}", (aq * bq).value.to_bits());
assert_eq!(res_llvm.to_bits(), res_crate.to_bits());
assert_eq!(res_llvm.to_bits(), res_sys.to_bits());
}
|
Note that on -gnu targets, the system version of |
The upstream issue [1] has been resolved so we can enable these tests again. [1]: rust-lang#616
This is a problem in Rust's compiler-builtins, but also the LLVM library (which is demonstrated here). The correct answer should be 0.0.
https://play.rust-lang.org/?version=stable&mode=debug&edition=2021&gist=54ee2169049eb22eb1b44d41c6f37e1e
The text was updated successfully, but these errors were encountered: