pitrou commented on issue #12681: URL: https://github.com/apache/arrow/issues/12681#issuecomment-2485595568
By the way, looking at one of the failing values, the value are only different at the last bit of precision: ```python >>> x = 124.6864762710842 >>> y = 124.68647627108422 >>> x.hex() '0x1.f2bef3a2b7259p+6' >>> y.hex() '0x1.f2bef3a2b725ap+6' >>> math.nextafter(x, math.inf) 124.68647627108422 >>> math.nextafter(x, math.inf) == y True ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
