Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

SSE2: Double precision log function

I need open source (no restriction on license) implementation of log function, something with signature

__m128d _mm_log_pd(__m128d);

It is available in Intel Short Vector Math Library (part of ICC), but ICC is neither free nor open source. I am looking for implementation using intrinsics only.

It should use special rational function approximations. I need something almost as accurate as cmath log, say 9-10 decimal digits, but faster.

like image 902
watson1180 Avatar asked Dec 13 '10 17:12

watson1180


4 Answers

Here's the counterpart for __m256d: https://stackoverflow.com/a/45898937/1915854 . It should be pretty trivial to cut it to __m128d. Let me know if you encounter any problems with this.

Or you can view my implementation as something obtaining two __m128d numbers at once.

like image 60
Serge Rogatch Avatar answered Sep 17 '22 11:09

Serge Rogatch


I believe log2 is easier to compute. You can multiply/divide your number by a power of two (very quick) such that it lies in (0.5, 2], and then you use a Pade approximant (take M close to N) which is easy to derive once and for all, and whose order you can chose according to your needs. You only need arithmetic operations that you can do with SSE intrinsics. Don't forget to add/remove a constant according to the above scaling factor.

If you want natural log, divide by log2(e), that you can compute once and for all.

It is not rare to see custom log functions in some specific projects. Standard library functions address the general case, but you need something more specific. I sincerely think it is not that hard to do it yourself.

like image 38
Alexandre C. Avatar answered Sep 21 '22 11:09

Alexandre C.


Take a look at AMD LibM. It isn't open source, but free. AFAIK, it works on Intel CPUs. On the same web page you find a link to ACML, another free math lib from AMD. It has everything from AMD LibM + Matrix algos, FF and distributions.

I don't know any open source implementation of double precision vectorized math functions. I guess Intel and AMD libs are hand optimised by the CPU manufacturer and everyone uses them when speed is important. IIRC, there was an attempt to implement intrinsics for vectorized math functions in GCC. I don't how far they managed to get. Obviously, it isn't a trivial task.

like image 35
pic11 Avatar answered Sep 18 '22 11:09

pic11


Framewave project is Apache 2.0 licensed and aims to be the open source equivalent of Intel IPP. It has implementations that are close to what you are looking for. Check the fixed accuracy arithmetic functions in the documentation.

like image 39
renick Avatar answered Sep 17 '22 11:09

renick