fast-float

Build Latest Version Documentation Apache 2.0 MIT Rustc 1.37+

This crate provides a super-fast decimal number parser from strings into floats.

toml [dependencies] fast-float = "0.1"

There are no dependencies and the crate can be used in a no_std context by disabling the "std" feature.

Compiler support: rustc 1.37+.

Usage

There's two top-level functions provided: parse() and parse_partial(), both taking either a string or a bytes slice and parsing the input into either f32 or f64:

Example:

```rust // Parse the entire string as a decimal number. let s = "1.23e-02"; let x: f32 = fastfloat::parse(s).unwrap(); asserteq!(x, 0.0123);

// Parse as many characters as possible as a decimal number. let s = "1.23e-02foo"; let (x, n) = fastfloat::parsepartial::(s).unwrap(); asserteq!(x, 0.0123); asserteq!(n, 8); assert_eq!(&s[n..], "foo"); ```

Details

This crate is a direct port of Daniel Lemire's fast_float C++ library (valuable discussions with Daniel while porting it helped shape the crate and get it to the performance level it's at now), with some Rust-specific tweaks. Please see the original repository for many useful details regarding the algorithm and the implementation.

The parser is locale-independent. The resulting value is the closest floating-point values (using either f32 or `f64), using the "round to even" convention for values that would otherwise fall right in-between two values. That is, we provide exact parsing according to the IEEE standard.

Infinity and NaN values can be parsed, along with scientific notation.

Both little-endian and big-endian platforms are equally supported, with extra optimizations enabled on little-endian architectures.

Performance

The presented parser seems to beat all of the existing C/C++/Rust float parsers known to us at the moment by a large margin, in all of the datasets we tested it on so far – see detailed benchmarks below (the only exception being the original fast_float C++ library, of course – performance of which is within noise bounds of this crate). On modern machines, parsing throughput can reach up to 1GB/s.

In particular, it is faster than Rust standard library's FromStr::from_str() by a factor of 2-8x (larger factor for longer float strings).

While various details regarding the algorithm can be found in the repository for the original C++ library, here are few brief notes:

Benchmarks

Below is the table of average timings in nanoseconds for parsing a single number into a 64-bit float.

| | canada | mesh | uniform | iidi | iei | rec32 | | ---------------- | -------- | -------- | --------- | ------ | ------ | ------- | | fast-float | 22.08 | 11.10 | 20.04 | 40.77 | 26.33 | 29.84 | | lexical | 61.63 | 25.10 | 53.77 | 72.33 | 53.39 | 72.40 | | lexical/lossy | 61.51 | 25.24 | 54.00 | 71.30 | 52.87 | 71.71 | | fromstr | 175.07 | 22.58 | 103.00 | 228.78 | 115.76 | 211.13 | | fastfloat (C++) | 22.78 | 10.99 | 20.05 | 41.12 | 27.51 | 30.85 | | abseil (C++) | 42.66 | 32.88 | 46.01 | 50.83 | 46.33 | 49.95 | | netlib (C++) | 57.53 | 24.86 | 64.72 | 56.63 | 36.20 | 67.29 | | strtod (C) | 286.10 | 31.15 | 258.73 | 295.73 | 205.72 | 315.95 |

Parsers:

Datasets:

Notes:


License

Licensed under either of Apache License, Version 2.0 or MIT license at your option.


Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in this crate by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.