I am using the ARM NEON vrsqrteq
intrinsic to calculate the approximate reciprocal square root of a vector of floats. I would like to know the accuracy of that approximation.
However I can't find any documentation that provides this.
The Neon programmers' guide simply states that the vrsqrteq
intrinsic finds the approximate reciprocal square root but does not say a word about the accuracy.
For AVX for example, Intel provides the maximum relative error for the _mm256_rsqrt_ps
intrinsic in the Intel Intrinsics Guide.
Is there somewhere something similar for ARM NEON intrinsics? I'm guessing the accuracy of the vrsqrteq
intrinsic is different on different processors, but is there maybe a guaranteed minimal accuracy?
I also have the same situation for the vrecpeq
intrinsic.