-
Notifications
You must be signed in to change notification settings - Fork 10.4k
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
[SR-12312] BinaryFloatingPoint._convert rounds differently from concrete floating-point initializers #54742
Comments
I noticed this fix didn't make it into Xcode 11.4.1 (11E503a), Swift 5.2.2. Will it not be included until 5.3? |
Is it possible to say anything about when this fix will land in an Xcode GM (It's not in Xcode 12.1)? |
Jens, that’s surprising to me. Just to confirm, what you’re trying works correctly in the nightly releases? Update: I verified that the fix is in the release/5.3 branch on GitHub, and using Xcode 12.1, all of the following works exactly as expected after this fix: var bitPattern: UInt64 =
0b01111111111_0000000000000000000000110000000000000000000000000000
var z = Double(bitPattern: bitPattern)
Float._convert(from: z).value == Float(z) // true
z = Double(Float.greatestFiniteMagnitude) +
Double(Float.greatestFiniteMagnitude.ulp / 2)
Float._convert(from: z).value == Float(z) // true
bitPattern =
0b01111111111_0000000000000000000001110000000000000000000000000000
z = Double(bitPattern: bitPattern)
Float._convert(from: z).value == Float(z) // true
bitPattern =
0b01111111111_0000000000000000000010110000000000000000000000000000
z = Double(bitPattern: bitPattern)
Float._convert(from: z).value == Float(z) // true
let a = Float.greatestFiniteMagnitude
let b = a.ulp / 2
let c = Double(a) + Double(b)
Float(c) == Float._convert(from: c).value // true Are you experiencing a different result? |
Strange, those are all false for me, using (the default toolchain of) Xcode 12.1 (12A7403), in an empty command line project, and in the Terminal with swiftc:
|
Huh, this is not a great user experience ... I update to the latest Xcode (12.1) via the App Store, and I don't get the latest Swift / Standard Library? I don't even know (without looking that up) why my target is My Software Update says "Your Mac is up to date - macOS Catalina 10.15.7 (19H2). So how do I make sure I'm using an up to date Standard Library? |
I suppose that this is just one of the implications of the Swift standard library being shipped now with the OS. This function is not inlinable, so it doesn't matter what SDK you download. Your code will automatically pick up bug fixes for non-inlinable functions when running on an OS with a newer standard library. I guess in this case that means macOS 11 or later. |
I guess so, which means that it's (almost) never enough to say eg |
Attachment: Download
Additional Detail from JIRA
md5: c64cbc224dbcfb5a5a07fc0365a21140
Issue Description:
Consider the following example:
Similarly, there are other mismatched conversions:
(Thanks to @jepers for reporting this on Swift Forums)
The text was updated successfully, but these errors were encountered: