Ryū: Fast Float-To-String Conversion
pldi18.sigplan.org
Ryū: Fast Float-To-String Conversion
1–10 of 45 posts
Re: Ryū: Fast Float-To-String Conversion
#2The code is here: https://github.com/ulfjack/ryu
Re: Ryū: Fast Float-To-String Conversion
#3The code is here: https://github.com/ulfjack/ryu
Jacob Quinn has a translation to Julia here: https://github.com/quinnj/Ryu.jl
Re: Ryū: Fast Float-To-String Conversion
#4Other than printing out the numbers, what are the practical applications?
Re: Ryū: Fast Float-To-String Conversion
#5Other than printing out the numbers, what are the practical applications?
Javascript was mentioned in the talk; because of its weak typing and plenty of APIs that take strings, floating point printing is pretty common.
Re: Ryū: Fast Float-To-String Conversion
#6Does anyone know of a good decimal float to string converter, preferably in c?
Re: Ryū: Fast Float-To-String Conversion
#7(De-)Serialization being such a common task both in Servers and clients nowadays I wonder if special instructions would make sense in CPUs
Re: Ryū: Fast Float-To-String Conversion
#8Re: Ryū: Fast Float-To-String Conversion
#9[deleted]
Re: Ryū: Fast Float-To-String Conversion
#10Other than printing out the numbers, what are the practical applications?
Javascript was mentioned in the talk; because of its weak typing and plenty of APIs that take strings, floating point printing is pretty common.
lack of 64bit integer maybe you mean, but all languages need (de)serializations so this problem is very common