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
The archive paper provides 10 example hard complex divisions with answers. It also provides an algorithm for measuring the accuracy of the result in "bits", which I have implemented. The robust cdiv algorithm is said to get 53 bits for all but num8 on the hard problems, where it gets 52 bits. I reproduce all of the results (also the default julia / reproduces results for smith's algorithm), except I get 0 bits on num5. I've tracked this down to the division of b/c returning zero inside robust_cdiv2, after r is also zero. But it's not clear how to fix it.
I discovered this through the LAPACK 3.5.0 release notes:
http://www.netlib.org/lapack/explore-html/df/d90/dladiv_8f_source.html
We are using a standard algorithm, but the one above is better.
The text was updated successfully, but these errors were encountered: