You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On the other hand Base.FastMath.pow_fast is quite slow for Complex128 (around 100ns) so I checked the normal ^ and found that it is actually faster than the Float64 case 🤔. I opened an issue in the julia repository, let's see how it goes from there.
The text was updated successfully, but these errors were encountered:
I think I found something to improve the evaluation performance!
I benchmarked exponent, e.g.
x^3
, and found that it was quite slow :OBut from this issue I found that there is a special LLVM instruction which is exposed under
Base.FastMath.pow_fast
On the other hand
Base.FastMath.pow_fast
is quite slow forComplex128
(around 100ns) so I checked the normal^
and found that it is actually faster than theFloat64
case 🤔. I opened an issue in the julia repository, let's see how it goes from there.The text was updated successfully, but these errors were encountered: