Re: RFR: 8334755: Asymptotically faster implementation of square root algorithm [v35]

2024-07-26 Thread Raffaello Giulietti
On Wed, 24 Jul 2024 13:20:31 GMT, fabioromano1 wrote: >> The aim is not about having even more efficient code (yours is already >> faster than the existing algorithm), but to have simpler code. >> >> The two denormalization code snippets, while based on the same underlying >> math, are quite d

Re: RFR: 8334755: Asymptotically faster implementation of square root algorithm [v35]

2024-07-24 Thread fabioromano1
On Wed, 24 Jul 2024 11:46:03 GMT, Raffaello Giulietti wrote: >> fabioromano1 has updated the pull request incrementally with one additional >> commit since the last revision: >> >> Made normalization consistent with that of the C code in the paper > > The aim is not about having even more ef

Re: RFR: 8334755: Asymptotically faster implementation of square root algorithm [v35]

2024-07-24 Thread Raffaello Giulietti
On Wed, 24 Jul 2024 10:32:08 GMT, fabioromano1 wrote: >> I have implemented the Zimmermann's square root algorithm, available in >> works [here](https://inria.hal.science/inria-00072854/en/) and >> [here](https://www.researchgate.net/publication/220532560_A_proof_of_GMP_square_root). >> >> The

Re: RFR: 8334755: Asymptotically faster implementation of square root algorithm [v35]

2024-07-24 Thread fabioromano1
> I have implemented the Zimmermann's square root algorithm, available in works > [here](https://inria.hal.science/inria-00072854/en/) and > [here](https://www.researchgate.net/publication/220532560_A_proof_of_GMP_square_root). > > The algorithm is proved to be asymptotically faster than the New