We encourage users to adopt fast_float library instead of fast_double_parser. It has more functionality. It provides full support for the JSON syntax and the same great speed. The fast_float library is part of most major Web browsers, GCC and so forth: it is well tested and supported.
Introduction
Fast function to parse ASCII strings containing decimal numbers into double-precision (binary64) floating-point values. That is, given the string “1.0e10”, it should return a 64-bit floating-point value equal to 10000000000. We do not sacrifice accuracy. The function will match exactly (down the smallest bit) the result of a standard function like strtod.
We support all major compilers: Visual Studio, GNU GCC, LLVM Clang. We require C++11.
The core of this library was ported to Go by Nigel Tao and is now a standard float-parsing routine in Go (strconv.ParseFloat).
You should be able to just drop the header file into your project, it is a header-only library.
The current API is simple enough:
#include "fast_double_parser.h" // the file is in the include directory
double x;
char * string = ...
const char * endptr = fast_double_parser::parse_number(string, &x);
You must check the value returned (endptr): if it is nullptr, then the function refused to parse the input.
Otherwise, we return a pointer (const char *) to the end of the parsed string. The provided
pointer (string) should point at the beginning of the number: if you must skip whitespace characters,
it is your responsibility to do so.
We expect string numbers to follow RFC 7159 (JSON standard). In particular,
the parser will reject overly large values that would not fit in binary64. It will not accept
NaN or infinite values.
It works much like the C standard function strtod expect that the parsing is locale-independent. E.g., it will parse 0.5 as 1/2, but it will not parse 0,5 as
1/2 even if you are under a French system. Locale independence is by design (it is not a limitation). Like the standard C functions, it expects that the string
representation of your number ends with a non-number character (e.g., a null character, a space, a colon, etc.). If you wish the specify the end point of the string, as is common in C++, please consider the fast_float C++ library instead.
We assume that the rounding mode is set to nearest, the default setting (std::fegetround() == FE_TONEAREST). It is uncommon to have a different setting.
What if I prefer another API?
The fast_float offers an API resembling that of the C++17 std::from_chars functions. In particular, you can specify the beginning and the end of the string.
Furthermore fast_float supports both 32-bit and 64-bit floating-point numbers. The fast_float library is part of Apache Arrow, GCC 12, Safari/WebKit and other important systems.
Why should I expect this function to be faster?
Parsing strings into binary numbers (IEEE 754) is surprisingly difficult. Parsing a single number can take hundreds of instructions and CPU cycles, if not thousands. It is relatively easy to parse numbers faster if you sacrifice accuracy (e.g., tolerate 1 ULP errors), but we are interested in “perfect” parsing.
Instead of trying to solve the general problem, we cover what we believe are the most common scenarios, providing really fast parsing. We fall back on the standard library for the difficult cases. We believe that, in this manner, we achieve the best performance on some of the most important cases.
We have benchmarked our parser on a collection of strings from a sample geojson file (canada.json). Here are some of our results:
parser
MB/s
fast_double_parser
660 MB/s
abseil, from_chars
330 MB/s
double_conversion
250 MB/s
strtod
70 MB/s
(configuration: Apple clang version 11.0.0, I7-7700K)
We expect string numbers to follow RFC 7159. In particular,
the parser will reject overly large values that would not fit in binary64. It will not produce
NaN or infinite values. It will refuse to parse 001 or 0. as these are invalid number strings as
per the JSON specification. Users who prefer a more
lenient C++ parser may consider the fast_float C++ library.
The parsing is locale-independent. E.g., it will parse 0.5 as 1/2, but it will not parse 0,5 as
1/2 even if you are under a French system.
Requirements
If you want to run our benchmarks, you should have
Windows, Linux or macOS; presumably other systems can be supported as well
A recent C++ compiler
A recent cmake (cmake 3.11 or better) is necessary for the benchmarks
This code falls back on your platform’s strdtod_l /_strtod_l implementation for numbers with a long decimal mantissa (more than 19 digits).
Usage (benchmarks)
git clone https://github.com/lemire/fast_double_parser.git
cd fast_double_parser
mkdir build
cd build
cmake .. -DFAST_DOUBLE_BENCHMARKS=ON
cmake --build . --config Release
ctest .
./benchmark
Under Windows, the last line should be ./Release/benchmark.exe.
Be mindful that the benchmarks include the abseil library which is not supported everywhere.
fast_double_parser: 4x faster than strtod
Introduction
Fast function to parse ASCII strings containing decimal numbers into double-precision (binary64) floating-point values. That is, given the string “1.0e10”, it should return a 64-bit floating-point value equal to 10000000000. We do not sacrifice accuracy. The function will match exactly (down the smallest bit) the result of a standard function like
strtod.We support all major compilers: Visual Studio, GNU GCC, LLVM Clang. We require C++11.
The core of this library was ported to Go by Nigel Tao and is now a standard float-parsing routine in Go (
strconv.ParseFloat).Reference
Usage
You should be able to just drop the header file into your project, it is a header-only library.
The current API is simple enough:
You must check the value returned (
endptr): if it isnullptr, then the function refused to parse the input. Otherwise, we return a pointer (const char *) to the end of the parsed string. The provided pointer (string) should point at the beginning of the number: if you must skip whitespace characters, it is your responsibility to do so.We expect string numbers to follow RFC 7159 (JSON standard). In particular, the parser will reject overly large values that would not fit in binary64. It will not accept NaN or infinite values.
It works much like the C standard function
strtodexpect that the parsing is locale-independent. E.g., it will parse 0.5 as 1/2, but it will not parse 0,5 as 1/2 even if you are under a French system. Locale independence is by design (it is not a limitation). Like the standard C functions, it expects that the string representation of your number ends with a non-number character (e.g., a null character, a space, a colon, etc.). If you wish the specify the end point of the string, as is common in C++, please consider the fast_float C++ library instead.We assume that the rounding mode is set to nearest, the default setting (
std::fegetround() == FE_TONEAREST). It is uncommon to have a different setting.What if I prefer another API?
The fast_float offers an API resembling that of the C++17
std::from_charsfunctions. In particular, you can specify the beginning and the end of the string. Furthermore fast_float supports both 32-bit and 64-bit floating-point numbers. The fast_float library is part of Apache Arrow, GCC 12, Safari/WebKit and other important systems.Why should I expect this function to be faster?
Parsing strings into binary numbers (IEEE 754) is surprisingly difficult. Parsing a single number can take hundreds of instructions and CPU cycles, if not thousands. It is relatively easy to parse numbers faster if you sacrifice accuracy (e.g., tolerate 1 ULP errors), but we are interested in “perfect” parsing.
Instead of trying to solve the general problem, we cover what we believe are the most common scenarios, providing really fast parsing. We fall back on the standard library for the difficult cases. We believe that, in this manner, we achieve the best performance on some of the most important cases.
We have benchmarked our parser on a collection of strings from a sample geojson file (canada.json). Here are some of our results:
(configuration: Apple clang version 11.0.0, I7-7700K)
We expect string numbers to follow RFC 7159. In particular, the parser will reject overly large values that would not fit in binary64. It will not produce NaN or infinite values. It will refuse to parse
001or0.as these are invalid number strings as per the JSON specification. Users who prefer a more lenient C++ parser may consider the fast_float C++ library.The parsing is locale-independent. E.g., it will parse 0.5 as 1/2, but it will not parse 0,5 as 1/2 even if you are under a French system.
Requirements
If you want to run our benchmarks, you should have
This code falls back on your platform’s
strdtod_l/_strtod_limplementation for numbers with a long decimal mantissa (more than 19 digits).Usage (benchmarks)
Under Windows, the last line should be
./Release/benchmark.exe.Be mindful that the benchmarks include the abseil library which is not supported everywhere.
Sample results
Ports and users
Credit
Contributions are invited.
This is based on an original idea by Michael Eisel (joint work).
License
You may use this code under either the Apache License 2.0 or the Boost Software License 1.0.