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
sqrtf_neon_hpf() first computes the inverse of the square root, and then the
reciprocal, i.e.
t = 1/sqrt(x)
r = 1/t
it might be easier/faster to compute the inverse of the square root, and then
multiply by the original value, i.e.
t = 1/sqrt(x)
r = x * t
Original issue reported on code.google.com by [email protected] on 15 Sep 2011 at 11:53
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
[email protected]
on 15 Sep 2011 at 11:53The text was updated successfully, but these errors were encountered: