Update README.md

This commit is contained in:
Daniel Lemire 2020-11-06 10:00:13 -05:00 committed by GitHub
parent dcc883cde8
commit c975e468a1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -80,12 +80,14 @@ This library is used by [Apache Arrow](https://github.com/apache/arrow/pull/8494
It can parse random floating-point numbers at a speed of 1 GB/s on some systems. We find that it is often twice as fast as the best available competitor, and many times faster than many standard-library implementations.
```
$ ./build/benchmarks/benchmark
# parsing random integers in the range [0,1)
volume = 2.09808 MB
netlib : 294.33 MB/s (+/- 2.4 %) 14.03 Mint/s
strtod : 86.53 MB/s (+/- 1.4 %) 4.12 Mint/s
abseil : 521.66 MB/s (+/- 3.2 %) 24.86 Mint/s
fastfloat : 1061.86 MB/s (+/- 3.8 %) 50.61 Mint/s
netlib : 271.18 MB/s (+/- 1.2 %) 12.93 Mfloat/s
doubleconversion : 225.35 MB/s (+/- 1.2 %) 10.74 Mfloat/s
strtod : 190.94 MB/s (+/- 1.6 %) 9.10 Mfloat/s
abseil : 430.45 MB/s (+/- 2.2 %) 20.52 Mfloat/s
fastfloat : 1042.38 MB/s (+/- 9.9 %) 49.68 Mfloat/s
```
See https://github.com/lemire/simple_fastfloat_benchmark for our benchmarking code.