Re: Fast and cheap (Double|Float)::toString Java algorithm

2021-05-04 Thread Raffaello Giulietti
Hi Suminda, as I explained back in February, I already experimented blending Schubfach with a variant of Grisu back in 2018. Contrary to my expectations, I observed noticeable performance drops wrt pure Schubfach. I didn't explore any further, but I think that the more complex control logic

Re: Fast and cheap (Double|Float)::toString Java algorithm

2021-05-04 Thread Suminda Sirinath Salpitikorala Dharmasena
Hello, I hope everything is well with you. Due to other commitments this work has stalled. I was planning to implement: - fast to string conversion - fast string parsing - fast formatting - fast search - fast sort - fast templating - fast buffers The code I have done so far is here:

RE: Fast and cheap (Double|Float)::toString Java algorithm

2021-02-23 Thread Andrey Turbanov
>The last implementation is available in pre-Skara webrev form, as referenced >in [2] Hope to see it as a github review soon! Andrey Turbanov

Re: Fast and cheap (Double|Float)::toString Java algorithm

2021-02-05 Thread Suminda Sirinath Salpitikorala Dharmasena
Hello, I am working on a port of DragonBox to Java. If there is interest in contributing this is most welcome. Suminda On Fri, 5 Feb 2021 at 21:51, Raffaello Giulietti < raffaello.giulie...@gmail.com> wrote: > Hello, > > as a reminder, a Java implementation of Schubfach [1] intended to >

Fast and cheap (Double|Float)::toString Java algorithm

2021-02-05 Thread Raffaello Giulietti
Hello, as a reminder, a Java implementation of Schubfach [1] intended to replace the current slow and expensive OpenJDK (Double|Float)::toString algorithm has been discussed, presented and contributed to this mailing list in several posts. The last implementation is available in pre-Skara