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
Certain math functions such as copysign can be implemented efficiently with bitwise operations. It would be convenient to have these available:
copysign
isfinite
isinf
isnan
isnormal
signbit
I find the non-standard flipsign function https://docs.julialang.org/en/v1/base/math/#Base.flipsign convenient, e.g. to implement upwind finite differencing stencils. It can be defined as
flipsign
flipsign(x, y) = copysign(1, y) * x
but can be implemented more efficiently as
flipsign(x, y) = x ^ (y & SIGNMASK)
The text was updated successfully, but these errors were encountered:
This issue is more general than #32, so I am closing #32.
Sorry, something went wrong.
I put the text of issue #93 into your orginal request to have it all here.
No branches or pull requests
Certain math functions such as
copysign
can be implemented efficiently with bitwise operations. It would be convenient to have these available:copysign
isfinite
isinf
isnan
isnormal
signbit
I find the non-standard
flipsign
function https://docs.julialang.org/en/v1/base/math/#Base.flipsign convenient, e.g. to implement upwind finite differencing stencils. It can be defined asbut can be implemented more efficiently as
The text was updated successfully, but these errors were encountered: