We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
this code:
let x = f16::from_f32(std::f32::consts::PI); println!("{:.1e}", x); println!("{:.1e}", f32::from(x));
produces this
3.140625e0 3.1e0
f16::debug just uses fmt(self.to_f32(), f) so I don't know what might be causing this
f16::debug
fmt(self.to_f32(), f)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
this code:
produces this
f16::debug
just usesfmt(self.to_f32(), f)
so I don't know what might be causing thisThe text was updated successfully, but these errors were encountered: