-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
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
Fixing the //(x::Number, y::Complex) one liner to accomodate silent overflows and division by zero/infinity #56478
base: master
Are you sure you want to change the base?
Conversation
if isinf(real(y)) || isinf(imag(y)) | ||
return 0//1 | ||
end |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If y is a complex integer isn't isinf
here always false?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In issue #56245 the errors were thrown for "incorrectly assumes y is finite and nonzero" so I added conditions for for infinite and 0.
base/rational.jl
Outdated
end | ||
real_y = real(y) | ||
imag_y = imag(y) | ||
denom = Int32(abs(real_y))^2 + Int32(abs(imag_y))^2 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why Int32
here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I added that to account for any overflow, but int16 would work perfectly fine as well!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hey, I’ve implemented scaling to prevent any overflow in calculations (removing any need for INT32. Could you take a look at my approach
applied scaling while calculating absolute values in order to prevent overflow at any step
doctest fails:
|
base/rational.jl
Outdated
|
||
|
||
function //(x::Number, y::Complex) | ||
if((x//abs2(y))==0//1 || (x//abs2(y))==1//0) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Comparing with iszero
, isinf
, etc., should be cheaper than with ==
.
fixed the overflow issue in my solution, implemented iszero and isinf wherever possible for lighter implementation
Hey, the overflow was due to converting complex floats to rationals, I have instead come up with a solution requiring no rational conversions :) |
Fixes #53435 Fixes #56245. I have added conditions for division by zero and infinite handling in the case of complex numbers and overflow handling in the case of integer-based complex numbers. Further, I have added a few tests for the same :)