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
There seems to be something wrong with how Inf is treated when higher precision is used:
Inf
julia> Float64x1(-Inf) - 1 -Inf julia> Float64x2(-Inf) - 1 # Same happens for Float64x3, etc NaN
and
julia> Float64x1(Inf) + 1 Inf julia> Float64x2(Inf) + 1 # Same happens for Float64x3, etc NaN
The text was updated successfully, but these errors were encountered:
Hey @mtanneau , the remarks from the comment I left on your other issue also apply here. Adding the link for reference.
Sorry, something went wrong.
No branches or pull requests
There seems to be something wrong with how
Inf
is treated when higher precision is used:and
The text was updated successfully, but these errors were encountered: